body {
  background-color: #67132b;
  color: white;
  font-family: 'JetBrains Mono ExtraBold';
}
a {
  color: white;
  text-decoration: none;
  transition-property: color background-color;
  transition-duration: 0.5s;
}
.link {
    position: relative;
}
.link .details {
    visibility: hidden;
    position: absolute;
    padding: 5px;
    left: 10px;
    top: 50%;
    background-color: #67132b;
    text-indent: 0;
    font-size: 2.5dvh;
}
a:hover {
  color: #fffa18;
}
.link:hover .details {
    visibility: visible;
    color: white;
    position: relative;
    line-height: 1;
}
.container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
}
.top {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 5.5dvh;
    background-color: white;
    z-index: 1;
}
.toptext {
    position: absolute;
    right: 1dvw;
    top: 1.8dvh;
    text-align: right;
    font-size: 5dvh;
    color: #67132b;
}
.toptitle {
    position: absolute;
    left: 1dvw;
    bottom: 1.8dvh;
    text-align: left;
    font-size: 5dvh;
    color: #67132b;
}
.bottom {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #67132b;
    font-size: 3.5dvh;
    z-index: 2;
}
.bottomright {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: #67132b;
    font-size: 2.5dvh;
}
.bottomright a {
    color: #67132b;
    text-decoration: none;
    font-size: 2.5dvh;
}
.bottomright a:hover {
    color: #fffa18;
    background-color: #67132b;
}
.bottomright br {
    display: none;
}
@media screen and (orientation: portrait) {
    .toptext {
        font-size: 8dvw;
        top: 5.5dvw;
        right: 1dvw;
    }
    .bottom {
        font-size: 4.1dvw;
    }
    .bottomright {
        font-size: 4dvw;
    }
    .bottomright a {
        font-size: 4dvw;
    }
    .bottomright br {
        display: block;
    }
    .link .details {
        font-size: 3.6dvw;
    }
}