@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #424242;
    font-family: "Inter",serif;
}
nav{
    width: 100%;
    padding: 1.5rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 2px 1px 2px #eee;
}
nav img{
    width: 150px;
}
nav ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 400;
}
nav ul a{
    text-decoration: none;
    margin: 1rem;
    color: #666;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: 100%;
    padding: 0.7rem .7rem;
    transition: all 0.3s ease-in-out;
    font-weight: 300;
}
nav ul a:hover{
    color: #387ed1;
}
div img{
    width: 70%;
    margin-top: 3rem;
}
div {
    width: 80vw;
    height: 80vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
div h2{
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 5rem;
    margin-bottom: 1rem;
}
div p {
font-size: 1.2rem;
}
div button{
    margin-top: 3rem;
    background-color: #387ed1;
    color: #fff;
    border: 1px solid rgba(0,0,0,0) !important;
    border-radius: 3px;
    padding: 10px 30px;
    font-size: 1.2rem;
}
div button:hover{
    background-color:black;
    cursor: pointer;
}
