body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1e1e1e;
    height: 100vh;
}

.image-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/tyrra-fenrir.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.logo {
    max-width: 75vw;
    width: auto;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 1.8rem;
}

p {
    font-size: 1rem;
}

.social-links a {
    margin: 0 10px;
    font-size: 1.2rem;
    display: inline-block;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .social-links a {
        font-size: 1rem;
    }

    .image-background {
        background-image: url('/tyrra-fenrir-vertical.png');
    }
}