body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #83f690;
    font-family: Arial, sans-serif;
    gap: 20px;
    flex-direction: column;
}

.box {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(216, 31, 31, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    /* height: 40px; */
    width: 150px;
}

.box:hover {
    transform: scale(1.1);
} 

h1 {
    margin: 0 0 10px 0;
    color: #333;
}

p {
    margin: 0 0 15px 0;
    color: #666;
}

.status {
    color: #cf1d1d;
    font-size: 14px;
}