@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=swap');

:root {
    --text: #f1f5fe;
    --background: #031130;
    --primary: #082b77;
    --secondary: #041539;
    --accent: #1a5eef;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nanum Myeongjo', serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--secondary);
    box-shadow: 0 1px 8px var(--accent);
}

#nav-title {
    font-size: 1em;
    width: fit-content;
    display: block;
    margin: auto;
}

header li {
    list-style: none;
    display: inline-block;
    padding: 0 20px;
    font-size: 1.33em;
    font-weight: bold;
}

header a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.25em;
}

header a:hover {
    color: var(--accent);
    transition: all 0.3s ease 0s;
}

header figure img.logo-image {
    height: 3em;
    display: block;
    transition: all 0.1s ease-in-out;
    margin: auto;
    border-radius: 100%;
}

header figure:hover img.logo-image {
    height: 3.15em;
    outline: var(--accent) inset 2px;
    margin-bottom: 5px;
}

a:hover {
    cursor: pointer;
}

footer {
    position: fixed;
    bottom: 0px;
    background-color: var(--background);
    width: 100%;
    height: 7.5%;
    display: flex;
    justify-content: space-between;
}

footer span {
    margin-top: 1.35%;
    color: var(--text);
    font-weight: bolder;
}

footer p {
    margin-top: 1.15%;
}

footer p,
footer span {
    margin-right: 2%;
}

footer a {
    text-align: center;
    margin-top: 1.5%;
    font-size: larger;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}