@font-face {
    font-family: "audionugget";
    src: url(fonts/audionugget.ttf);
}
html {
    height: 100%;
    overflow-y: scroll;
    cursor: cell;
}
body {
    background-color: #0E2C5E;
    background-image: url(../../assets/images/noise.png), linear-gradient(220deg, #5D85A6 0%, #0E2C5E 100%);
    background-attachment: fixed;
    font-family: sans-serif;
    color: #ECF0F1;
}
.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-gap: 20px;
}
.title {
    font-family: "audionugget";
    font-size: 100px;
    text-align: right;
}
a {
    color: #ECF0F1;
    text-decoration: none;
    cursor: cell;
}
a:hover {
    color: #FF86C8;
}
.top {
    display: flex;
    grid-gap: 20px;
    justify-content: flex-start;
    border-top: 1px solid #ECF0F1;
    transform: translateY(20px);
    transition: transform 400ms;
}
.container:hover .top {
    transform: translateY(0)
}
.top a {
    opacity: 0;
    transition: opacity 400ms;
}
.container:hover .top a {
    opacity: 1;
}
.bottom {
    display: flex;
    grid-gap: 20px;
    justify-content: flex-end;
    border-bottom: 1px solid #ECF0F1;
    transform: translateY(-20px);
    transition: transform 400ms;
}
.container:hover .bottom {
    transform: translateY(0)
}
.bottom a {
    opacity: 0;
    transition: opacity 400ms;
}
.container:hover .bottom a {
    opacity: 1;
}
::selection {
    background-color: #5D85A6;
}
@media (hover: none) and (pointer: coarse) {
    .top {
        transform: translateY(0)
    }
    .top a {
        opacity: 1;
    }
    .bottom {
        transform: translateY(0)
    }
    .bottom a {
        opacity: 1;
    }
}