@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.header{
    width: 100%;
    height: 100vh;
    background-image: url(./image-1.jpg);
    background-color: rgba(255, 203, 251, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    padding: 0 7%;
    transition: background-image 1s;
}
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.logo{
    width: 320px;
    cursor: pointer;
    margin-left: 50px;
}
nav .colors{
    flex:1;
    text-align: center;
}
nav .colors li{
    display:inline-block;
    margin: 10px 20px;
}
.hover{
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: white;
}
nav .colors li a:hover{
    color:ivory;
    opacity: 80%;
}
nav .button{
    color: rgb(255, 255, 255);
    text-decoration: none;
    border: 1px solid white;
    padding: 10px 30px;
    border-radius: 30px;
    margin-right: 7%;
}
nav .button:hover{
    background-color: rgba(250, 250, 239, 0.363);
}
.info{
    width: 100%;
    padding: 0 7%;
    display: flex;
    align-items: center;
    color: yellow;
    position: fixed;
    top: 250px;
    left: 0;
}
.info div{
    margin: 0 20px;
}
.info div h2{
    font-size: 30px;
    font-weight: 400;
}
.info .line{
    flex: 1;
    height: 4px;
    background: rgb(255, 255, 255);
}
.fade{
    transition: opacity 1s;
    opacity: 0;
}