body {
    padding: 0;
    margin: 0;
}

.header {
    position: fixed;
    width: 100%;
}

#left-header-box {
    flex: 1;
    display: flex;
    flex-direction: row;
}
#right-header-box {
    flex:1;
    display: flex;
    flex-direction: row;
    justify-content: end;
    padding-right: 20px;
}

.icon-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}
.header-icon {
    height: 4vh;
    width:4vh;
}
#header {
    background-color: blanchedalmond;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
}
main {
    min-height: 100vh;
}

#title {
    font-size: x-large;
    font-weight: 600;
    font-family: 'Courier New', Courier, monospace;
    margin: 15px;
}
.credit {
    font-size: xx-small;
    color: blanchedalmond;
}
#credits{
    background-color: rgb(27, 5, 26);
    display: flex;
    flex-direction: row;
    padding: 10px;
    
}

.buffer {
    height: 37px;
}

#copyright-div {
    flex: 1;
    
}
#credit-div{
    flex:1;
    display: flex;
    flex-direction: column;
}
.copyright-div-holder {
    flex:1;
    display: flex;
    justify-content: right;
}
.copyrighting {
    color: blanchedalmond;
    font-size: small;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: right;
    margin: 20px;
}

#nav {
    background-color: blanchedalmond;
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.links {
    display: flex;
    flex-direction: column;
}

.page-link {
    border-style: solid;
    border-color: rgb(27, 5, 26);
    margin: 20px;
    width: 50vh;
    text-align: center;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    color: rgb(27, 5, 26);
    background-color: blanchedalmond;
    font-size: x-large;
    text-decoration:none;
}

.page-link:hover {
    background-color: rgb(27, 5, 26);
    color: blanchedalmond;
}

#closebtn:hover,
#menubtn:hover{
    cursor: pointer;
}

