@font-face {
    font-family: 'Overpass';
    src: url(/fonts/Overpass/Overpass-VariableFont_wght.ttf) format("truetype");
    font-display: swap;
}

* {
    --light-grey: #eee;
    --meduim-grey: #777;
    --action-blue: #007AAF;
    --pc-blue: #242456;
    --pc-red: #9D2B2C;
    font-family: 'Overpass';
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
    background-color: var(--pc-blue);
}

*::-webkit-scrollbar {
    display: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-grey);

    position: absolute;
    top: 60px;
    min-height: calc(100vh - 60px);
    width: 100vw;
}

.bold {
    font-weight: bold;
}

.hide {
    display: none;
}

nav {
    position:fixed;
    top: 0;
    z-index: 2;
    background-color: var(--pc-blue);
    height: 60px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 4vw;
}

nav div {
    display: flex;
    align-items: center;
}

nav div img {
    margin-inline: 20px;
}

nav div a {
    margin-top: 8px;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

nav button {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    padding-top: 7px;
}

nav img {
    height: 50px;
    width: auto;
}

nav #right {
    height: 100%;
}

nav #right a {
    margin: 0;
    height: 60%;
} 

nav #right a img {
    height: 100%;
}

dl {
    margin-top: 2%;
    width: 80%;
}

dl > dt {
    font-size: larger;
    background-color: transparent;
}

dl > * {
    padding: 1%;
    background-color: #fff;
    border-bottom: 1px var(--light-grey) solid;
    font-size: large;
}

dd:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

dd:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
}