body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../img/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.card {
    width: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    /* background: rgba(28, 28, 28, 0.9); */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
}

.card .logo {
    margin-bottom: 20px;
}

.card .logo img {
    max-width: 70%;
}

.card .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.card a {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #1c1c1c;
    border: none;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.card a:hover {
    background: #e0e0e0;
}

.card .footer {
    margin-top: 20px;
    font-size: 23px;
}

.card .footer span {
    display: block;
    margin-top: 10px;
}

/* CUSTOM */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.button:nth-child(2) { animation: fadeInUp 1s ease-in-out 0.2s forwards; }
.button:nth-child(3) { animation: fadeInUp 1s ease-in-out 0.4s forwards; }
.button:nth-child(4) { animation: fadeInUp 1s ease-in-out 0.6s forwards; }
.button:nth-child(5) { animation: fadeInUp 1s ease-in-out 0.8s forwards; }
.button:nth-child(6) { animation: fadeInUp 1s ease-in-out 1s forwards; }
.button:nth-child(7) { animation: fadeInUp 1s ease-in-out 1.2s forwards; }
.button:nth-child(8) { animation: fadeInUp 1s ease-in-out 1.4s forwards; }

.shareon {
    font-size: 0 !important;
    margin-top: 0;
}
.shareon>* {
    background-color: #3a3838!important;
    border-radius: 10px!important;
}
.footer-buttons{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vcf-download{
    background-color: #3a3838 !important;
    padding: 9px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}