body {
    text-transform: uppercase;
    background-color: #ff128d;
    overflow-x: hidden;
}
.container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
}
.title {
    position: relative;
    font-family: "Kabisat";
    font-size: 60px;
    color: #d3ff00;
    width: 100%;
    background-color: #ff128d;
    z-index: 2;
    pointer-events: none;
}
.title .vinyl {
    line-height: 3;
}
.letters {
    position: relative;
    height: fit-content;
    width: 100%;
    background-color: black;
    font-family: "Dotted";
    font-size: 5vh;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: default;
}
.content {
    position: relative;
    width: auto;
    height: 100%;
    display: none;
    font-family: "NIN";
    font-size: 20px;
    color: white;
    padding-left: 20px;
    overflow-y: auto;
    scrollbar-color: #d3ff00 transparent;
    scrollbar-width: thin;
}
.default {
    display: block;
    position: relative;
    height: 100%;
}
.letlink {
    color: white;
    transition-property: color;
    transition-duration: 0.5s;
}
.letlink.no-hover {
    color: #d3ff00;
}
.letlink.no-hover:hover {
    color: #d3ff00;
}
.letlink:not(.no-hover):hover {
    color: #ff128d;
    transition-property: color;
    transition-duration: 1s;
    cursor: pointer;
}
.content span:hover {
    transition-property: color;
    transition-duration: 0.5s;
    color: #d3ff00;
    cursor: default;
}
.content span {
    transition-property: color;
    transition-duration: 1s;
}
.nav {
    position: relative;
    height: min-content;
    padding-top: 10px;
    font-family: "Dotted";
    font-size: 2vh;
    color: #d3ff00;
}
.nav a {
    color: #d3ff00;
    text-decoration: none;
    width: min-content;
    transition-property: color;
    transition-duration: 1s;
}
.nav a:hover {
    color: black;
    width: min-content;
    transition-property: color;
    transition-duration: 0.5s;
}