* {
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
}

body {
    background-color: #f8f9fa;
    margin: 0;
    color: #333;
}

.Animation {
    width: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.Animation:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e2e2e2;
}

.hidden {
    display: none !important;
}