body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    text-align: center;
    /* background-color: rgba(255, 102, 0, 0.9); */
    color: white;
    padding: 0px 40px 0px 40px;
    border-radius: 20px;
    width: 350px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}

.card h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 80px;
}

.button {
    background-color: #F8F5E4;
    color: #FF6600;
    font-size: 18px;
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 10px;
    width: 96%;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    display: block;
    text-decoration: none;
}

.button:hover {
    background-color: #FF8800;
    color: white;
}

.footer a {
    margin-top: 20px;
    font-size: 18px;
    color: white;
    font-weight: 900;
    text-decoration: none;
}

@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; }

/* CUSTOM */
.shareon {
    font-size: 0 !important;
    margin-top: 0;
}
.shareon>* {
    background-color: #ef4600!important;
    border-radius: 10px!important;
}
.footer-buttons{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vcf-download{
    background-color: #ef4600 !important;
    padding: 9px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}