header {
    background-color: #DAE8F5;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav {
    font-size: 20px;
    color: #473e72;
}

header ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

header li {
    transition: .3s;
}

header li:hover {
    color: #0c0042;
    cursor: pointer;
}

header a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

a#button {
    text-align: center;
    width: 165px;
    background-color: #FFB500;
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-weight: 600;
    transition: .3s;
}

a#button:hover {
    background-color: #d69a00;
}

a#logo {
    max-width: 250px;
}

#toggle-btn{
    display: none;
}

@media(max-width: 970px) {
    header{
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    header nav, header a#button{
        display: none;
    }

    #toggle-btn {
        display: block;
        border: none;
        background-color: transparent;
        color: #473e72;
        font-size: 25px;
    }

    #toggle-btn {
        cursor: pointer;
    } 
}