@font-face {
    font-family: 'MinecraftRegular';
    src: url('../fonts/MinecraftRegular-Bmg3.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'MinecraftRegular', Arial, sans-serif;
    color: #ffaa00; /* Weiße Schriftfarbe */
}

.container {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gif-container img {
    width: 100px; /* Die Breite des GIFs */
    height: auto; /* Die Höhe wird automatisch anhand der Breite skaliert */
}

.message {
    font-size: 24px;
}
hr {
    border: none;
    border-top: 2px solid #ffaa00; /* Orange Linie, passend zu deiner Schriftfarbe */
    width: 80%; /* Optional: nicht ganz so breit */
    margin: 20px 0; /* Abstand oben und unten */
}
