* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    background-image: url("./white-rabbit-yielddd.gif");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 1000px;
}

a {
    color: white;
    text-decoration: underline;
}

main {
    background-color: rgba(13, 24, 34, 0.5);
    padding: 1rem;
}

h1 {
    margin-top: 1.2rem;
}