body{
    overflow-x: hidden !important;
    animation: fade 0.5s ease-in-out;
    margin: 0 !important;
    padding: 0;    
}

@keyframes fade {

    from {

        opacity: 0;

    }
    to {

        opacity: 1;
    }
    
}

.backgroundContainer {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.background img {
    width: 100%;
}

.mainContainer {
    position: absolute;
    top: 280px;
    left: 0;
    right: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 13%;
}


.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    animation: moved 1s ease-in-out;
}

.title h2 {
    margin-top: 5px;
}

.title h1 {
    margin-bottom: 5px;
}

@keyframes moved {
    from {

        transform: translateY(+25%);


    }

    to {

        transform: translateY(0);
    }
}


.buttons {
    margin-top: 190px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 130px;
    animation: moved 1s ease-in-out;

}

.btnSelector {
    background-color: white;
    text-decoration: none;
    color: black;
    font-weight: bolder;
    padding: 25px;
    border-radius: 15px;
    font-size: 25px;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, border-radius 0.5s ease-in-out, transform 0.5s ease-in-out;

}

.btnSelector:hover {
    transform: scale(1.1);
    border-radius: 30px;
    border-color: rgba(0, 0, 0, 0);
    background-color: #20c4f4;
    color: white;
    

}


/*=============================================================================================

/*                                      VISTA DE CELULARES


/*=============================================================================================*/


@media (max-width: 768px){

    .mainContainer {
        top: 90px;
        left: 0;
        right: 0;
        margin-top: 13%;
    }

    .title {
        font-size: 10px;
    }

    .title h2 {
        margin-top: 5px;
    }

    .title h1 {
        margin-bottom: 5px;
    }


    .buttons {
        margin-top: 110px;
        gap: 70px;

    }

    .btnSelector {
        padding: 15px;
        font-size: 25px;
  
    }




}