            /* MAIN */
main {
    background-image: url(../IMAGES/background.jpg);
    background-size: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    animation: fadein 2s;
    z-index: 1;
}
main .card-logo {
    width: 40%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 15%;
    left: 4%;
}
main .card-logo .logo {
    text-align: center;
    background-color: #202020;
    opacity: 0.8;
    border-radius: 10px;
    padding: 10px;
}
main .card-logo .social-networks {
    display: flex;
    flex-direction: row;
    gap: 30px;
    background-color: #202020;
    opacity: 0.8;
    margin-top: 20px;
    border-radius: 10px;
    padding: 10px;
}
main .card-logo .social-networks a{
    color: var(--color-white);
    font-size: 1.2rem;
}
main .card-logo h2 {
    font-family: var(--font-title);
    color: var(--color-white);
}
section {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--color-white);
    border-top: 3px solid #202020;
    background-image: url(../IMAGES/background2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-size: cover;
}
section .card-comingSoon {
    width: 80%;
    height: 80%;
    background-color: #202020;
    opacity: 0.9;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 60px 2px rgba(0,0,0,0.71);
    -webkit-box-shadow: 0px 0px 60px 2px rgba(0,0,0,0.71);
    -moz-box-shadow: 0px 0px 60px 2px rgba(0,0,0,0.71);
}
section .card-comingSoon .div-card{
    display: flex;
    flex-direction: column;
    gap: 70px;
}
section .card-comingSoon .div-card .div-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
}
section .card-comingSoon div h3 {
    font-size: 4rem;
    font-family: var(--font-title);
    color: var(--color-white);
}

@media (max-width: 1300px) {
    main .card-logo {
        width: 100%;
        left: 0%;
    }
    main .card-logo h2 {
        font-size: 1.5rem;
        color: var(--color-white);
    }
    main .card-logo .social-networks a{
        color: var(--color-white);
        font-size: 1.2rem;
    }
}
@media (max-width: 700px) {
    section .card-comingSoon div h3 {
        font-size: 2rem;
    }
}
@media (max-width: 400px) {
    section .card-comingSoon div h3 {
        font-size: 2rem;
    }
}
@media (max-width: 450px) {
    section .card-comingSoon .div-card{
        gap: 20px;
    }
    section {
        height: 80%;
    }
}
@media (max-height: 400px) {
    section .card-comingSoon {
        height: auto;
        padding: 20px;
    }
    section .card-comingSoon div h3 {
        font-size: 2rem;
    }
}