@font-face {
    font-family: "Rubik Mono One";
    src: url('/home-resources/fonts/RubikMonoOne-Regular.ttf');
}

.anim-elem{
    transform: translateY(50px);
    opacity: 0;
    transition: transform 600ms ease-out, opacity 600ms ease-out;
}

.anim-elem.visible{
    transform: translateX(0px);
    opacity: 1;
}

.logo{
    width: 100%;
    max-height: 40vh;
}

.rubik-mono-one-regular {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
}

.links {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em;
}
.links img{
    height: 1.5em;
}

.links span{
    display: block;
}

.links span a{
    display: flex;
    gap: .5em;
    align-items: center;
    color: inherit;
    /* justify-content: space-between; */
}
.links span:not(:last-child){
    margin-bottom: .5em;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
