:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --bg-color: #f5f7fa;
    --card-bg: #ffffff;
    --accent-color: #007bff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
}

.content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    /* max-height constraint in case the image is extremely tall */
    max-height: 400px;
    object-fit: cover;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-wrapper {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Initial state */
}

h1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    /* Initial state */
}

p {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    /* Initial state */
}