html {
    overscroll-behavior-y: contain;
}

body {
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    color: rgb(230, 230, 230);
    background-color: rgb(33, 33, 33);
    margin: 0;
    height: 100vh;
    box-sizing: border-box;
    padding-top: 20vh;
    overscroll-behavior-y: contain;
    position: relative;
}

.content {
    width: 50vw;
    margin-left: 25vw;
}

.ouroboros {
    position: absolute;
    left: 62.5vw;
    top: calc(20vh + 2.4rem);
    transform: translateX(-50%);
    width: 25rem;
    height: 25rem;
    fill: rgb(230, 230, 230);
}

.name-block {
    width: fit-content;
}

.title {
    text-align: left;
    margin: 0;
    white-space: nowrap;
}

.divider {
    border: none;
    border-top: 1px solid rgb(255, 255, 255);
    margin: 1rem 0 2rem 0;
    width: 100%;
}

.links-block {
    width: fit-content;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.2rem;
}

.links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin-bottom: 0.4rem;
}

.links a:hover {
    text-decoration: underline;
    color: rgb(230, 230, 230);
}