*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #424242;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
nav{
    width: 100%;
    position: sticky;
    top: 0;
    background-color: #ffffff;
}
.nav{
    background-color: white;
    display: flex;
    width: 75%;
    margin: auto;
    height: 9vh;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 30%;
    height: 50px;
}
.logo img{
    height: 8vh;
}
.link{
    width: 70%;
    text-align: end;
    display: flex;
    justify-content:flex-end ;
    column-gap: 6%;
}
.link a{
    color: #666666;
    text-decoration: none;
}
.link a:hover{
    color: #141414;
}

.container{
    width: 100%;
    background-color: #ffffff;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
button{
    height: 5vh;
    width: 15vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
main{
    background-color: #f7f8fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container{
    width: 75%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}
p{
    width: 95%;
    text-align: left;
    font-size: 14px;
    margin-top: 2vh;
}
hr{
    height: 5vh;
    color: #ffffff;
}