html {
    height: 100%
}


body {
    margin: 0;
    min-height: 100%;
    background-color: #ffffff;
    background-size: 100% 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
    background: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    flex-direction: column;
    
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

a {
    color: #C0A24B;
}

.button {
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    color: #000;
    background: #C0A24B;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(192, 162, 75, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: #d4b85f;
    box-shadow: 0 0 30px rgba(212, 184, 95, 0.9);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 2rem;
    }

    .button {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}