@font-face {
    font-family: 'MinecraftRegular';
    src: url('../fonts/minecraft-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'MinecraftRegular', monospace;
    background: url('../img/background.gif') center center / cover no-repeat;
    image-rendering: pixelated;
    min-height: 100vh;
    overflow: hidden;
}

.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 16px;
}

.quote-container {
    max-width: 768px;
    width: 100%;
    text-align: center;
}

.quote {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: left;
}

.author {
    margin-top: 1.5rem;
    display: block;
    color: #b0b0b0;
}