* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #ffffff;
    margin: 0;
}

html {
    background-color: #000000;
}

.nav {
    width: 100vw;
    height: 5em;
    border-bottom: 1px solid #333333;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    z-index: 5;
}

.navlinks {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 1em;
}

a {
    text-decoration: underline;
}
a:hover {
    color: #aaaaaa;
    cursor: pointer;
}

.socials {
    position: relative;
    text-decoration: underline;
}
.socials:hover {
    color: #aaaaaa;
    cursor: pointer;
}
.socialscontent {
    display: none;
    position: absolute;
    background-color: #333333;
    padding: 1em;
    flex-direction: column;
    gap: 1em;
    z-index: 5;
}
.socials:hover .socialscontent {
    display: flex;
    z-index: 5;
}
h1 a {
    text-decoration: none;
}

.body {
    border: 1px solid #555555;
    border-top: 0;
    border-bottom: 0;
    min-height: calc(100vh - 15em);
    width: 60vw;
    margin-left: calc(20vw - 5em);
    padding: 5em;
    display: flex;
    align-items: start;
    flex-direction: column;
    z-index: 0;
    gap: 1em;
}

.footer {
    width: 100vw;
    height: 2em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    border-top: 1px solid #555555;
}
.screenshot {
    max-width: 80%;
    border-radius: 4px;
}
.footer p {
    color: #aaaaaa;
}
.spanImage {
    width: 50%;
}
