* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    height: 100vh;
    background-image: url('assets/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(180, 120, 60, 0.15);
    pointer-events: none;
    z-index: 1;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.logo {
    height: 40px;
    width: auto;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    padding: 3rem;
}

.homer-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    font-weight: 300;
}

.homer-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9em;
    font-style: normal;
    opacity: 0.9;
}

@media (max-width: 768px) {
    header {
        top: 1rem;
        left: 1rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .homer-quote {
        font-size: 1.2rem;
    }
    
    main {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .homer-quote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .content {
        padding: 1.5rem;
        border-radius: 16px;
    }
}