* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.active{
    font-weight: bold;
}


.header {
    height: 55px;
    width: 100%;
    background-color: aqua;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;

    .logo {

        a {
            text-decoration: none;
            font-size: 22px;
            font-family: monospace;
            color: black;
            font-weight: bold;
        }
    }

    .nav {
        width: 30%;

        ul {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;


            li{
                list-style: none;

                a{
                    text-decoration: none;
                    font-size: 15px;
                    font-family: sans-serif;
                    color: black;
                }
            }
        }
    }
}



button {
    height: auto;
    width: auto;
    font-size: 50px;
}