.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #90AADB;
    padding: 12px;
    border-radius: 25px;
    box-shadow: 0px 2px 8px;
    position: fixed;
    top: 0px;
    width: 98%;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.Button {
    background-color: #EF473A;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s;
}

.Button:hover {
    background-color: #EA9F9D;
    transform: scale(0.97);
}
