body{
    margin: auto;
    background-color:rgb(75,75,123);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;

    
}
header{
    background-color:rgb(28,28,79);
    font-size:20px;
    font-weight:bold;
    color:white;
    border-radius: 35px;
    padding-top:0.5%;
    padding-bottom: 0.5%;
    width: 100%;

    
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8%;
    background-color:rgb(232, 232, 110);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 35px;
    width: 100%;
}

img{
    padding-top: 20px;
    padding-bottom:20px;
}

button{
    background:#FFD700;
    color:white;
    border: none;
    padding: 12px 12px;
    font-size: 18px;
    cursor:pointer;
    transition:0.3s;
    border-radius: 30px;
}
button:hover{
    background:#FFB703;
    transform:scale(1);

}
#main{
    margin: 20px;
    padding: 20px;
    color: white;
}
.box{
    display: none;
}
ul{
    list-style-type: none;
}
.erbjudande{
    background-color:rgb(54, 54, 88);
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;

}
#text{
    display: none;
    font-size: 18px;
}
@media (max-width:600px){
    header{
        width: 100%;
        
    }

nav{
    width: 100%;
    gap:5px;

}
button{
    width: 100%;
    padding:2%;
    font-size:4%;
}
img{
    width: 50%;
}
#img {
    width:20%;
}
#text{
    font-size: 30%;
}
iframe{
    width: 50%;
    height: 40%;
    
}
}
