/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}*/

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

main {
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;

}

header {
    position: relative;
    top: 0;
    left: 20px;
    width: 200px;
    float: right;
    border: 1px solid black;
    border-radius: 7px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;  
}

.menu_items {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 8px;
    background: white;
}

.content {
    padding: 20px;
    margin-bottom: 20px;   
}

a {
    color: blue;
    text-decoration: none;
}

ul {
    list-style: disc;
    margin: .5em;
    padding: 0 1em;
}

li ul {
    list-style: square;
    margin: .5em 0;
    padding: 0 3em 1em;
    border-bottom: 1px solid #eeeeee;
}

ul ul li {
    list-style: circle;
    margin: .25em .5em;
}

footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}



#menu_toggle {
    display: none;
}

/* Reponsive */
@media (width < 860px) {
    #menu_toggle {
        display: block;
    }

    .nav {
        padding: 0 20px;
       
    }

    .menu_items {
        position: fixed;
        top: 0;
        width: 200px;
       
        height: 100%;
        left: -100%;
        padding: 50px 30px 30px;
        flex-direction: column;
        transition: all 0.5s ease;
    }

    .showMenu .menu_items {
        left: 0;
    }

    a {
        color: #333;
    }

    #menu_toggle {
        width: 20px;
        cursor: pointer;
    }

    .menu_items #menu_toggle {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .content {
        padding-top: 30px;
    }

        .content .row {
            flex-direction: column;
            padding: 0 20px;
            justify-content: center;
        }

            .content .row .column {
                width: 100%;
            }
}

@media (width < 600px) {
    .content {
        padding-top: 30px;
    }

        .content .row h2 {
            font-size: 26px;
        }
}
