body{
    margin: 0;
    padding: 0;
    background-image: url("images/baggrund.jpeg");
}

html {
    font-size: 16px;
}

h1{
    color: #EFE8E0;
    font-size: clamp(2.5rem, 11vw, 11rem);
    font-family: 'galada', serif;
}

.h1-forside{
    font-size: clamp(2.5rem, 11vw, 11rem);
    text-align: center;
}

.hero {
    padding-top: 150px;
}

.hero-forside {
    padding-top: 200px;
}

h2{
    color: #EFE8E0;
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: center;
}

h3{
    color: #4C191C;
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: left;
}

h4{
    color: #4C191C;
    font-size: clamp(1.25rem, 1.7vw, 1.56rem);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: center;
}

h5{
    color: #EFE8E0;
    font-size: clamp(1.25rem, 1.7vw, 1.56rem);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: left;
}

p{
    color: #4C191C;
    font-size: clamp(1rem, 1.2vw, 1rem);
    font-family: 'DM sans', sans-serif;
    text-align: left;
    margin-top: 5px;
}
 .p-fed{
    font-weight: bold;
 }

.h4-regular{
    font-weight: normal;
    text-align: left;
    margin-bottom: 0;
}

.h4-left{
    text-align: left;
}

.p-beige{
    color: #EFE8E0
}

.p-mockup{
    text-align: right;
    padding-right: 60px;
}

li{
    color: #4C191C;
    font-size: clamp(1rem, 1.2vw, 1rem);
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    margin-top: 5px;
}

ul{
    color: #4C191C;
}

.standart-knap{
    display: flex;
    width: 180px;
    height: 30px;
    padding: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background: #4C191C;
    border-radius: 30px;
    border: 3px solid #EFE8E0;
    box-shadow: 0 0 0 5px #4C191C;
   

    transition: all 0.3s ease;
}

/* Hover */
.standart-knap:hover{
    background-color: #4C191C;
    border-color: #4C191C;
}

.beige-kasse{
    display: flex;
    width: 85%;
    border-radius: 10px;
    margin: 160px auto 0;

    border-radius: 20px;
    background: #EFE8E0;
    box-shadow: -5.84px -5.84px 5.84px 0 rgba(112, 94, 94, 0.30) 
        inset, 9.68px 9.68px 25.55px 0 rgba(159, 144, 144, 0.40) 
        inset, 5.82px 5.82px 2.82px 0 #FFF 
        inset, 0 17.04px 22.71px 0 rgba(42, 42, 42, 0.36);
}  

.gennemsigtig-kasse {
    display: flex;
    width: 85%;
    border-radius: 20px;
    margin: 160px auto 0;

    background: rgba(255, 255, 255, 0.14);
    box-shadow: -5.84px -5.84px 5.84px 0 rgba(193, 193, 193, 0.30) 
        inset, 9.68px 9.68px 25.55px 0 rgba(215, 215, 215, 0.40) 
        inset, 5.82px 5.82px 8.82px 0 rgba(255, 255, 255, 0.71) 
        inset;
    filter: drop-shadow(0 17.04px 22.71px rgba(42, 42, 42, 0.36));
}

.bla-kasse {
    display: flex;
    width: 85%;
    border-radius: 20px;
    margin: 160px auto 0;

    background: #D6F0FF;
    box-shadow: -5.84px -5.84px 5.84px 0 rgba(193, 193, 193, 0.30) 
        inset, 9.68px 9.68px 25.55px 0 rgba(215, 215, 215, 0.40) 
        inset, 5.82px 5.82px 8.82px 0 rgba(255, 255, 255, 0.71) 
        inset;
    filter: drop-shadow(0 17.04px 22.71px rgba(42, 42, 42, 0.36));
}

/*mobil side*/
@media screen and (max-width: 480px) {

body{
    background-image: url("images/baggrund-mobil.png");
}

h1{
    margin-top: 200px;
}

.standart-knap{
    width: 150px;
    height: 20px;
    font-size: 15px;
}

.gennemsigtig-kasse {
    margin-top: 100px;
}

.beige-kasse{
    margin-top: 100px;
}

}