body {
    margin: 0;
    padding: 0;
    background-color: black;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.nav-top {
    background: transparent;
    width: 100%;
    max-height: 10%;
    color: white;
}

.nav-top .top{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.nav-top .top .top-left {
    padding: 1% 0 0 2%;
}

.nav-top .top .top-left .logo {
    width: auto;
    height: 100px;
    cursor: pointer;
}

.nav-top .top .top-center {
    padding: 5%;
}

.nav-top .top .top-center ul{
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-top .top .top-center li a{
    margin: 0 30px;
    color: white;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 15px;
}

.nav-top .top .top-center li a:hover{
    text-decoration: underline;
}

.nav-top .top .top-right {
    padding: 0 3% 0 0;
}

.nav-top .top .top-right .clicky {
    background-color: gold;
    color: black;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.nav-top .top .top-right .clicky:hover {
    background-color: yellow;
}

.middle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    color: white;
    display: grid;
    place-content: center;
}

.middle-subpages {
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.middle .content {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 2px solid;
    border-color: white;
    animation-duration: 1s;
    animation-timing-function: steps(13, end);
    animation: typing 1s steps(13, end) forwards, blinking 1s infinite;
}

.middle-subpages .content-hacks {
    overflow: hidden;
    white-space: nowrap;
}

.middle-subpages .content-archive {
    overflow: hidden;
    white-space: nowrap;
}

.middle-subpages .title-mission {
    margin: 0;
    color: white;
    font-size: 50px;
    display: flex;
    justify-content: center;
}

.middle-subpages .subtitle-mission {
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
}

.middle-subpages .content-mission {
    color: white;
    font-size: 16px;
    margin:2%;
    display: flex;
    justify-content: center;
}

.middle-subpages .content-mission .actual-content-mission {
    display: flex;
    justify-content: center;
}

.middle-subpages .title-about {
    margin: 0;
    color: white;
    font-size: 50px;
    display: flex;
    justify-content: center;
}

.middle-subpages .content-about {
    color: white;
    font-size: 16px;
    margin:2%;
    display: flex;
    justify-content: center;
 }

.middle-subpages .content-about .actual-content-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.middle-subpages .content-about .actual-content-about .stuff {
    width: 1000px;

}

.middle-subpages .content-about .actual-content-about .stuff .hidden {
    visibility: hidden;
}

.middle-subpages .content-about .actual-content-about .stuff .links {
    color: white;
    text-decoration: underline;
}

.middle-subpages .content-about .actual-content-about .stuff a:hover .hidden{
    visibility: visible;
    text-decoration: none;
    cursor: default;
    color: white;
}

.middle-subpages .content-current {
    overflow: hidden;
    white-space: nowrap;
}

.middle-subpages .content-list .table-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.middle-subpages .content-list .table-container .entry{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.middle-subpages .content-list .table-container .entry .left-side{
    display: grid;
    justify-content: left;
    width: 400px;
    height: auto;
    font-size: 16px;
    padding-top: 2%;
    padding-bottom: 2%;
}

.middle-subpages .content-list .table-container .entry .right-side{
    display: flex;
    justify-content: left;
    border-left: 2px dotted white;
    width: 400px;
    height: auto;
    font-size: 16px;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 1em;
}

.middle-subpages .content-list .table-container .entry .project{
    text-decoration: none;
    color: white;
    font-weight: bolder;
    font-size: 25px;
}
.middle-subpages .content-list .table-container .entry .projectdes{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
}

.middle-subpages .content-list .table-container .entry .project:hover{
    text-decoration: underline;
}

.middle-subpages .content-list .table-container .entry .pic{
    height: 400px;
    width: auto;
}

.middle-subpages .title .pic{
    height: 500px;
    width: auto;
    display: flex;
    justify-content: center;
}

.middle-subpages .pic2{
    width: auto;
    height: 500px;
    display: flex;
    justify-content: center;
}

.middle-subpages .pic3{
    width: auto;
    height: 200px;
    display: flex;
    justify-content: center;
}

.middle-subpages .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.middle-subpages .title .pic img{
    border: 2px solid white;
}

@keyframes typing {
    from { width: 0% }
    to { width: 100% }
}

@keyframes blinking {
    0% {border-right-color: transparent}
    50% {border-right-color: white}
    100% {border-right-color: transparent}
}

.middle-content {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    display: flex;
    justify-content: center;
}

.middle-content p{
    width: 69%;
    border: 3px dashed #fff;
    padding: 2%;
}

.middle-content p .note{
    color: red;
}

.bottom {
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom ul {
    color: white;
    list-style: none;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-items: space-evenly;
}

.bottom ul li {
    align-items: center;
    display: flex;
    cursor: pointer;
}

.bottom ul li a{
    margin: 0px 75px 0 25px;
    color: white;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 15px;
}

.bottom ul li a:hover{
    text-decoration: underline;
}
