body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FDB813 0%, #FF8C42 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 600px;
}

h1 {
    color: #333;
    font-size: 3em;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

.duck-quotes {
    margin-top: 40px;
    text-align: left;
}

.duck-quotes h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.quote {
    background: #f8f9fa;
    border-left: 4px solid #FF8C42;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.quote:hover {
    background: #fff3e0;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quote p {
    margin: 0;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
    font-style: italic;
}
