html, body {
    font-family: "Pixelify Sans", sans-serif;
    color: #639bff;

    margin: 0;
    padding: 0;
}

a {
    color: #639bff;
}

img {
    image-rendering: pixelated;
}

hr {
    background-color: #639bff;

    width: 100%;
    height: 0.2rem;

    border: none;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bluesky {
    width: fit-content;

    text-align: left;
}

.content {
    display: flex;
    flex-direction: row;

    height: 100vh;
}

.content > div:first-child {
    flex-grow: 1;
}

.content > div:last-child {
    background-color: #242424;

    width: fit-content;
    height: 100vh;

    border-left: solid #639bff 0.2rem;

    overflow-y: auto;
}