*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}
header{
    background-color: #1B2336;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img{
    height: 70px;
    width: auto;

}
li{
    display: inline-block;
}
li a{
    color: white;
    font-size: 18px;
    font-weight: 440px;
    margin-right: 25px;
    text-decoration: none;
}
li a:hover{
    color: #0898f9;
    transform: scale(5);
}
button{
    width: auto;
    background-color: #0898f9;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;       
}
button:hover{
    background-color: #F2F2F2;
    color:#1B2336;
    transform: scale(1.05);
}
body{
    height: 100vh;
    width: 100%;
    margin: 0;
    background-color: #F2F2F2;
}
