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

:root {
    --bg-colour: #161319;
    --text-colour: #f7ebff;
    --text-colour-dark: #736b78;
    --link-colour: #00ffff;
    --font-family: 'Roboto Mono', monospace;
}

body {
    background-color: var(--bg-colour);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content {
    display: grid;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
}

.title {
    font-family: var(--font-family);
    color: var(--text-colour);
    text-align: center;
}

.body {
    font-family: var(--font-family);
    color: var(--text-colour-dark);
    text-align: center;
}

a {
    font-family: var(--font-family);
    color: var(--link-colour);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: var(--text-colour);
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}