@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
    color: white;
    background: black;
    font-family: 'Roboto Mono', monospace;
}

.main-container {
    position: fixed;
    inset: 0;
    display: flex;
    flex-flow: column;
    text-align: center;
}

.main-container > .background-logo {
    object-fit: contain;
    position: absolute;
    inset: 20% 0 0 20%;
    width: 80%;
    height: 80%;
    object-position: right bottom;
    opacity: 0.2;
}

.main-container > .main-header {
    font-size: 0.8em;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-block: auto;
    margin-inline: -50%;
}

.main-container > .main-header > img {
    display: inline-block;
    image-rendering: crisp-edges;
    margin-bottom: -0.5em;
}

.main-container > .social-links {
    position: absolute;
    inset: auto 0 10% 0;
}

.main-container > .social-links > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-container > .social-links > ul a {
    font-size: 1.5em;
    color: #fffc;
    text-decoration: none;
    padding: 0.5em;
}
.main-container > .social-links > ul a:hover {
    color: white;
}


.not-twitter {
    position: relative;
}
.not-twitter > :last-child {
    position: absolute;
    inset: 0;
    width: 1em;
    height: 1em;
    margin: 0.6em 0.5em 0.4em 0.5em;
    opacity: 0;
}
.not-twitter:hover > :first-child {
    opacity: 0;
}
.not-twitter:hover > :last-child {
    opacity: 1;
    animation: not-twitter-shake 80ms linear alternate 5;
}
@keyframes not-twitter-shake {
    from {
        transform: translateX(2px);
    } to {
        transform: translateX(-2px);
    }
}