* {
    margin: 0;
    padding: 0;
}

body {
    max-width: 1924px;
    margin: auto;
}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
}

h1 {
    text-align: center;
}

.active {
    border-bottom: 1px solid ;
}

#main {
    padding: 15px;
}

table {
    margin-top: 10px;
    width: 100%;
    max-width: 800px;
}

table, th, td {
    border: 1px solid ;
    border-collapse: collapse;
    padding: 3px;
}

th {
    background-color: azure;
}
/* Start Nav */
#nav {
    background-color: #322d2d;
    display: flex;
    align-items: center;
    padding: 5px 15px;
}

#nav_list {
    display: flex;
    justify-content: space-around;
    width: 180px;
    list-style: none;
    margin-left: 15px;
}

#nav_list > li > a {
    color: #f0f8ff;
}
/* End Nav */

/* Start Main */
#banner {
    width: 100%;
}

#links {
    text-align: center;
    margin-bottom: 15px;
}

#gallery  {
    text-align: center;
}

#gallery > img {
    width: 24%;
}
/* End Main */

/* start footer */
#footer {
    background-color: #191919;
    padding: 50px 15px;
}

#footer_container {
    display: flex;
    justify-content: space-between;
}

#footer_container > a {
    color: #f0f8ff;
    display: flex;
    align-items: center;
}

#footer_container > a > img{
    margin-right: 10px;
}

#footer_links {
    list-style: none;
}

.footer_title {
    color: #f0f8ff;
    margin-bottom: 5px;
}

#footer_links a {
    color: #f0f8ff;
}

#footer_links_icons {
    list-style: none;
    display: flex;
}

#footer_links_icons a {
    margin: 5px;
}

hr {
    margin: 20px 0;
}

#copyright {
    color: #f0f8ff;
    text-align: center;
}
/* end footer */

@media only screen and (max-width: 600px) {
    #footer_container {
        display: grid;
        justify-content: center;
        text-align: center;
    }

    #gallery > img {
        width: 49%;
    }
}

