/* Homepage container */
#homepage-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    color: white;
    padding: 20px;
    position: relative;
    margin-top: 80px;
    height: calc(100vh - 80px);
}

.central-card h1 {
    margin-bottom: 15px;
    font-size: 28px;
}

.central-card p {
    font-size: 18px;
}

.central-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.central-card {
    background-color: #4444447e;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .central-card {
        padding: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
}