@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

body {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 2vw;
    font-weight: bold;
    line-height: 3.5vw;
    color: whitesmoke;
    background-color: #1F2739;
}

h1 {
    text-align: center;
    color: #4DC3FA;
}

.container {
    text-align: center;
    overflow: hidden;
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    display: table;
}

.container th h1 {
    font-weight: bold;
    text-align: center;
    color: #185875;
}

.container td {
    border: 1px solid rgb(0, 238, 255);
    border-radius: 10px;
}

.container td,
.container th {
    padding-bottom: 2%;
    padding-top: 2%;
    padding-left: 1%;
    padding-right: 1%;
}

.container tr:nth-child(odd) {
    background-color: #323C50;
}

.container tr:nth-child(even) {
    background-color: #2C3446;
}

.container th {
    background-color: #1F2739;
}

.container td:first-child {
    color: whitesmoke;
}

a.linked:link {
    color: blue;
    background-color: #FFF842;
    border-radius: 8px;
    padding:5px;
    text-decoration: underline;
    text-underline-position: under;
}

a.linked:visited {
    color: blue;
    background-color: #FFF842;
    text-decoration: underline;
}

a.linkedTitle:link {
    color: rgb(151, 245, 255);
    background-color: transparent;
    text-decoration: underline;
    text-underline-position: under;
}

a.linkedTitle:visited {
    color: rgb(151, 245, 255);
    background-color: transparent;
    text-decoration: underline;
}

.special-image {
    border-radius: 15px;
}

.navbar {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #263343;
    padding: 8px 12px;
}

.navbar__logo {
    font-size: 1em;
    color: white;
}

.navbar__logo i {
    color: #d49466
}

.navbar__menu {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.navbar__menu li {
    padding: 8px 12px;
}

.navbar__menu li:hover,
.dropdown:hover .dropbtn {
    background-color: #d49466;
    border-radius: 4px;

}

.navbar__icons {
    list-style: none;
    color: white;
    display: flex;
    padding-left: 0;
}

.navbar__icons li {
    padding: 8px 12px;
}

a.white {
    text-decoration: none;
    color: white;
}

.dropdown {
    float: left;
    overflow: hidden;
    text-align: center;
}

.dropdown .dropbtn {
    font-size: 1em;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 24px;
    }

    .navbar__menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar__menu li {
        width: 100%;
        text-align: center;
    }

    .navbar__icons {
        justify-content: center;
        width: 100%;
    }

    .dropbtn {
        justify-content: center;
        width: 100%;
    }

    .dropdown {
        justify-content: center;
        width: 100%;
    }
}
