:root {
    --color-gray-900: #2b2e33;
    --color-gray-600: #6f7785;
    --color-background: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-background);
    color: var(--color-gray-900);
    overflow: hidden;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding: 2rem;
}

.caution-img {
    height: 282px;
    width: 452px;
    max-width: 90%;
    object-fit: contain;
    /* Replicating the 'ml-16' which was a bit off-center in the original code */
    margin-left: 4rem; 
}

.content {
    text-align: center;
    max-width: 490px;
    z-index: 10;
}

.title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.description {
    font-size: 1rem; /* text-normal */
    color: var(--color-gray-600);
    line-height: 1.5;
}

.footer {
    position: absolute;
    bottom: 2.5rem;
    z-index: 10;
}

.logo {
    width: 20px;
    height: 20px;
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 1s ease-in-out forwards;
    opacity: 0;
}

.animate-fade {
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .caution-img {
        height: auto;
        width: 320px;
        margin-left: 0;
    }
    .title {
        font-size: 1.125rem;
    }
}
