/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color:#e2be6f;
    color: white;
    text-align: center;
    padding: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 2rem;
}

.header-content p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.container {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.essays-section {
    margin-bottom: 30px;
}

.essay-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    background-color: #e2be6f;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.resource-link:hover {
    background-color: #e2be6f;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .resource-link {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }

    .header-content p {
        font-size: 0.9rem;
    }

    .resource-link {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}
