html, body {
    background-color: black;
    font-family: 'VT323', monospace;
    height: 1ßßvh;
    margin: 0;
}

a, a:visited {
    color: rgb(0, 225, 255);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#Header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-color: white;
    color: rgb(255, 255, 255);
    padding: 10px;
    width: 50%;
    background: linear-gradient(to top, rgb(0, 71, 6), rgb(0, 0, 0));
}

#HeaderImage {
    width: 20%;
    aspect-ratio: 1/1;
    overflow: hidden;
    
}

#HeaderImage img {
    border-radius: 100%;
    border-style: solid;
    border-color: white;
    width: 90%;
    height: 90%;
    object-fit: cover;
    
}

#HeaderMainTitle h1{
    margin: 0px;
    font-size: 3vw;
}

#HeaderSocial {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    text-align: right;
    
}

#HeaderSocial a {
    font-size: 2vW;
}

#HeaderSocial p {
    font-size: 1vw;
}

#MainBody {  
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-color: white;
    padding: 10px;
    width: 50%;
    height: 70vh;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: normal;
    word-break: break-word;

}