/********************************* VARIABLES ************************************/
:root {
    --color-principal: #bd992e;
}

/********************************* GENERALES ************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 62.5%;
    background-color: black;
    color: white;
    font-family: 'Poppins';
}

/********************************* SPINNER LOADING ************************************/
.loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: all 2s;
    background-color: black;
}

.jf {
    width: 200px;
}

/********************************** HEADER ************************************/
.header {
    width: 100%;
    height: auto;
    display: inline-flex;
}

.header__video {
    width: 100%;
    height: 100%;
}

/********************************** NAVEGACION ********************************/
.nav {
    width: 100%;
    height: auto;
    background-color: var(--color-principal);
    padding: .5rem 0;
    position: -webkit-sticky;
}

.nav .nav__list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav .nav__list .list__item {
    display: block;
    border: none;
    /* border-bottom: .1rem solid white; */
    text-align: center;
}

.nav .nav__list .list__item a {
    text-decoration: none;
    color: white;
    font-size: .8rem;
    background:
        linear-gradient(to right,
            rgb(32, 32, 32),
            rgb(255, 255, 255)),
        linear-gradient(to right,
            #705b1b,
            #e3b737,
            #ffce3e);
    background-size: 100% 3px, 0 10px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.nav .nav__list .list__item a:hover {
    margin-top: 5px;
    background-size: 0 3px, 100% 3px;
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    border-top: 0;
}

/********************************* BTNTOP ************************************/
#top {
    position: fixed;
    right: .5rem;
    bottom: .5rem;
    background-color: transparent;
    color: #707070;
    cursor: pointer;
    padding: 5px;
    border: none;
}

/********************************* SOCIALS ************************************/
.socials {
    width: 100%;
    height: 3rem;
    padding: 1rem;
}

.socials .socials__list {
    width: 100%;
    height: 100%;
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.socials .socials__list .list__item {
    margin: 0 .4rem;
}

.socials .socials__list .list__item a img {
    width: 40px;
}

/********************************* MUSICA ************************************/
/* color de los  iconos de musica y social media*/
.musical-img {
    transition: .5s;
}

.musical-img:hover {
    filter: invert(55%) sepia(97%) saturate(315%) hue-rotate(7deg) brightness(91%) contrast(93%);
}

.social-img {
    transition: .5s;
}

.social-img:hover {
    filter: invert(55%) sepia(97%) saturate(315%) hue-rotate(7deg) brightness(91%) contrast(93%);
}

/* fin color de los iconos*/
.music {
    width: 100%;
    height: auto;
    padding: 2rem 0;
}

.music .music__record {
    display: block;
    width: 85%;
    border: .5rem solid var(--color-principal);
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.music .music__spotify {
    width: 95%;
    margin: 0 auto;
}

.music #hidden {
    display: none;
}

.music #hidden2 {
    display: none;
}

.music .music__spotify .spotify__record {
    width: 100%;
    height: 5rem;
    border-radius: .5rem;
}

.music-grid {
    display: grid;
    /* grid-template-rows: repeat(3, 1fr); */
    padding: 0 10px;
}

.icons-redes img {
    width: 30rem;
}

.musical-title {
    color: var(--font-color);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.musical-plataforms__container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5px;
}

.musical-img {
    width: 90px;
    padding: 0 5px;
}

/* inicio responsive media queries de iconos de musica*/


/* @media screen and (max-width:1200px) { */
/* body {
        border: 15px solid blue;
    }

    .icons-redes img {
        width: 30rem;
    }

    .musical-title {
        color: var(--font-color);
        font-size: 1.5rem;
        font-weight: 500;
    }

    .musical-plataforms__container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 5px;
    }

    .musical-img {
        width: 50px;
        padding: 0 5px;
    } */
/* } */

/* fin responsive media queries de iconos de musica*/
/********************************* VIDEOS ************************************/
.videos {
    width: 100%;
    height: auto;
    padding: 0 1rem;
}

/*TODO+++++++++++ Videos de Youtube +++++++++++++ */
/* .videos {
    height: auto;
    width: 100%;
	overflow: hidden;
	position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
} */

.videos .videos__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.videos .videos__link {
    display: block;
    width: 100%;
    height: 14rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/*TODO ++++++++++++ Videos de Youtube+++++++++++++*/
.videos .one {
    background: url('../assets/img/THBNL\ 360\ Y\ si\ me\ vuelvo\ a\ enamorar\ EV.jpg') center / contain no-repeat;
    border-radius: 5px;
}

.videos .two {
    background: url('../assets/img/THBNL\ 360\ Fin\ de\ Semana.jpg') center / contain no-repeat;
    border-radius: 5px;
}

.videos .three {
    background: url('../assets/img/THBNL\ 360\ Dígale\ En\ Vivo.jpg') center / contain no-repeat;
    border-radius: 5px;
}

.videos .four {
    background: url('../assets/img/THBNL\ 360\ Iba\ A\ Dejar\ De\ Tomar.jpg') center / contain no-repeat;
    border-radius: 5px;
}

/********************************* BIOGRAFIA ************************************/
.biography {
    width: 90%;
    height: auto;
    background: url('../assets/img/sing.webp') center / contain no-repeat;
    padding: 2rem;
    margin: 0 auto;
}

.biography .biography__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.biography .biography__separate {
    width: 100%;
    height: .8rem;
    background-color: var(--color-principal);
    border: none;
    margin-bottom: 2rem;
}

.biography .biography__p {
    text-align: justify;
    font-size: .8rem;
    text-shadow: 1px 1px black;
}

/* .biography .one {
    margin-bottom: 5rem;
} */

.biography__scroll {
    height: 350px;
    overflow: auto;
}

.biography__scroll::-webkit-scrollbar {
    width: 0.5em;
}

/********************************* CONCIERTOS ************************************/
.concerts {
    width: 100%;
    height: auto;
    padding: 1rem;
}

.concerts .concerts__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.concerts .concerts__separate {
    width: 100%;
    height: .8rem;
    background-color: var(--color-principal);
    border: none;
    margin-bottom: 2rem;
}

.concerts .concerts__card {
    width: 100%;
    height: auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: .1px solid white;
}

.concerts .concerts__card:last-child {
    border-bottom: .1px solid white;
}

.concerts .concerts__card .card__date {
    font-size: 1.1rem;
}

.concerts .concerts__card .card__dat {
    font-size: .9rem;
}

.concerts .concerts__card .card__place {
    font-size: .9rem;
    margin-bottom: .5rem;
}

.concerts .concerts__card .card__btn {
    width: 7rem;
    padding: .3rem 0;
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: .9rem;
    text-align: center;
}

.concerts__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 4px solid var(--color-principal);
    border-radius: 5px;
    max-width: max-content;
    margin: 0 auto;
    padding: 5px 20px;
    color: white;
    font-size: 1rem;
    font-weight: 300;
    transition: .2s;
    text-decoration: none;
}

.concerts__btn:hover {
    background-color: var(--color-principal);
    font-weight: bold;
    color: black;

    .flags1 {
        filter: drop-shadow(3px 3px 0.1rem rgb(0, 0, 0));
    }
}

/********************************* CONTACTO ************************************/
.contact {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
}

.contact .contact__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contra__title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contra {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    padding: 1rem 0 2rem 0;
}

.contra p {
    display: flex;
    font-size: 1.4rem;
    text-align: center;
}

.flags {
    width: 2rem;
    margin-right: .5rem;
}

.flags1 {
    width: 1.5rem;
    margin: 0 auto;
}

.contact .contact__hr {
    width: 100%;
    height: .8rem;
    background-color: var(--color-principal);
    border: none;
    margin-bottom: 2rem;
}

.contact .contact__form {
    width: 100%;
    height: auto;
    padding: 1rem 0;
}

.contact .contact__form .form__input {
    width: 100%;
    height: 2rem;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: .9rem;
    font-family: 'Poppins';
    outline: none;
    background-color: transparent;
    color: white;
    border: 2px solid var(--color-principal);
    border-radius: 5px;
}

.contact .contact__form .form__textarea {
    width: 100%;
    height: 6rem;
    padding: .5rem;
    margin-bottom: 2rem;
    font-size: .9rem;
    font-family: 'Poppins';
    outline: none;
    background-color: transparent;
    color: white;
    border: 2px solid var(--color-principal);
    border-radius: 5px;
}

.contact .contact__form .form__btn {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
    padding: .6rem 0;
    background-color: var(--color-principal);
    color: white;
    border: none;
    border-radius: .2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    cursor: pointer;
    border: 2px solid transparent;
    color: black;
}

.contact .contact__form .form__btn:hover {
    background-color: transparent;
    border: 2px solid #bd992e;
    color: white;
}

.contact .contact__link {
    width: max-content;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: .9rem;
}

.contact .contact__link img {
    width: 2rem;
    margin-right: .5rem;
}

.news__btn {
    margin-block-start: 10px;
    font-size: 1rem;
    padding: 5px 20px;
    background-color: var(--color-principal);
    color: white;
    border-radius: 5px;
    outline: none;
    padding: 5px 50px;
    border: none;
}

/********************************* MODAL ************************************/

#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.897);
}

.modal__container {
    display: block;
    width: 50%;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    color: white;
    margin: 0 auto;
    /* text-align: center; */
}

.modal__container::-webkit-scrollbar {
    width: 0.5em;
}

.modal__title {
    position: absolute;
    top: 10%;
    left: 45%;
    transform: translate(-30%, -30%);
    font-size: 1.9rem;
}

.modal__btns {
    background-color: #bd992e;
    border: 2px solid transparent;
    color: black;
    font-size: 1rem;
    padding: 5px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.modal__btns:hover {
    background-color: black;
    border: 2px solid #bd992e;
    color: white;
}

.modal__container p {
    font-size: .9rem;
    margin-block-end: 5px;
    text-align: justify;
}

.modal__container h3 {
    font-size: 1.3rem;
    margin: 5px 0 5px;
    text-align: center;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-block-start: 20px;
    position: absolute;
    top: 90%;
    left: 55%;
    transform: translate(-80%, -80%);
}

/********************************* FOOTER ************************************/
.footer {
    width: 100%;
    height: auto;
}

.footer img {
    display: block;
    margin: 2rem auto;
}

/****************************************************** MEDIA QUERIES ***********************************************************/
@media (max-width: 600px) {

    .icons-redes img {
        width: 30rem;
    }

    .musical-title {
        color: var(--font-color);
        font-size: 1rem;
        font-weight: 500;
    }

    .musical-plataforms__container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 5px;
    }

    .musical-img {
        width: 50px;
    }

    .music__spotify {
        width: 50%;

    }

    .icons-redes img {
        width: 30rem;
    }

    .musical-title {
        color: var(--font-color);
        font-size: 1.5rem;
        font-weight: 500;
    }

    .musical-plataforms__container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 5px;
    }

    /********************************* BTNHAMBUR ************************************/
    /* #btnHambur {
        position: fixed;
        right: .9rem;
        top: 2.5rem;
        cursor: pointer;
    }

    #iconCancel {
        display: none;
        position: fixed;
        right: .9rem;
        top: 2.5rem;
        cursor: pointer;
    } */

    #menuHam {
        display: flex;
        flex-direction: column;
        gap: 6px;
        position: fixed;
        right: .9rem;
        top: 2.5rem;
        cursor: pointer;
        color: white;
    }

    .bar1 {
        background-color: white;
        width: 28px;
        height: 4px;
        border-radius: 10px;
        transition: .4s;
    }

    .bar2 {
        background-color: white;
        width: 28px;
        height: 4px;
        border-radius: 10px;
        transition: .4s;
    }

    .bar3 {
        background-color: white;
        width: 28px;
        height: 4px;
        border-radius: 10px;
        transition: .4s;
    }

    .bar1.active {
        transform: rotate(0deg) translate(-4px, 0px);
        height: 6px;
        background-color: white;
    }

    .bar2.active {
        width: 20px;
        height: 6px;
        transform: rotate(0deg) translate(-2px, 0px);
        background-color: white;
    }

    .bar3.active {
        height: 6px;
        transform: rotate(-90deg) translate(8px, -10px);
        width: 25px;
        background-color: white;
    }

    .nav.exit {
        display: none;
    }

    .nav {
        display: none;
    }

    .nav.visible {
        display: block;
        position: -webkit-sticky;
        bottom: auto;
    }

    .socials .socials__list .list__item a img {
        width: 35px;
    }

    #top {
        right: .5rem;
        bottom: .5rem;
    }

    .contra {
        display: block;
    }

    .contra p {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .icons-redes img {
        width: 23rem;
    }

    .music-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
        padding: 0 10px;
    }

    /********************************** SUSCRIBETE ********************************/

    .newNav {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-self: center;
        align-self: center;

    }

    .socials {
        justify-self: center;
        align-self: center;
    }

    .news {
        justify-self: center;
        align-self: center;
        padding: 10px;
        justify-self: center;
        align-self: center;
    }

    .news__input {
        background-color: transparent;
        color: white;
        font-size: 1rem;
        outline: none;
        border: 3px solid var(--color-principal);
        border-radius: 5px;
        padding: 5px 20px;
    }

    .news__input:nth-child(1) {
        margin-block-end: 10px;
    }

    .news__btn {
        margin-block-start: 10px;
        font-size: 1rem;
        padding: 5px 20px;
        background-color: var(--color-principal);
        color: white;
        border-radius: 5px;
        outline: none;
        padding: 5px 50px;
    }

    .container__btn {
        text-align: center;
    }

    .inputs__container {
        text-align: center;
    }

    .news-title__container {
        text-align: center;
        margin-block-end: 10px;
    }

    .modal__container {
        width: 80%;
    }

    .footer {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 50px, 130px;
        grid-template-areas:
            "e e e e"
            "a b c d"

        ;

        .item1 {
            grid-area: a;
        }

        .item2 {
            grid-area: b;
        }

        .item3 {
            grid-area: c;
        }

        .item4 {
            grid-area: d;
        }

        .item5 {
            grid-area: e;
            margin: 15px 0 0 0;
        }
    }

    .privacity a {
        color: white;
        text-decoration: none;
        font-size: .9rem;
        transition: border-width 0.3s;
        border-bottom: 2px solid transparent;
        cursor: pointer;
    }

    .privacity a:hover {
        border-bottom: 2px solid #bd992e;
    }
}

@media (min-width: 600px) {

    /********************************** NAVEGACION ********************************/
    .nav {
        background-color: black;
        position: -webkit-sticky;
    }

    .nav .nav__list {
        justify-content: space-around;
    }

    .nav .nav__list .list__item a {
        font-size: 1rem;
    }

    .sticky {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 100;
        border-top: 0;
    }

    /********************************* BTNHAMBUR ************************************/
    #menu {
        display: none;
    }

    /********************************** SUSCRIBETE ********************************/

    .newNav {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-self: center;
        align-self: center;

    }

    .news {
        padding: 10px;
        justify-self: center;
        align-self: center;
    }

    .socials {
        justify-self: center;
        align-self: center;
    }

    .newNav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-self: center;
        align-self: center;

    }

    .news {
        justify-self: center;
        align-self: center;
    }

    .news__input {
        background-color: transparent;
        color: white;
        font-size: 1rem;
        outline: none;
        border: 3px solid var(--color-principal);
        border-radius: 5px;
        padding: 5px 20px;
    }

    .news__input:nth-child(1) {
        margin-block-end: 10px;
    }

    .news__btn {
        margin-block-start: 10px;
        font-size: 1rem;
        padding: 5px 20px;
        background-color: var(--color-principal);
        color: white;
        border-radius: 5px;
        outline: none;
        padding: 5px 50px;
        cursor: pointer;
    }

    .container__btn {
        text-align: center;
    }

    .inputs__container {
        text-align: center;
    }

    .news-title__container {
        text-align: center;
        margin-block-end: 10px;
    }
}


/********************************* SOCIALS ************************************/
.socials .socials__list .list__item {
    margin: 0 .4rem;
}

/* .socials .socials__list .list__item a img{
        width: 48px;
    } */
/********************************* MUSICA ************************************/
.music .music__record {
    width: 70%;
    border: .5rem solid var(--color-principal);
    margin: 0 auto;
    margin-bottom: 2rem;
}

/********************************* VIDEOS ************************************/
.videos .videos__link {
    width: 90%;
    /* height: 22rem; */
}

/********************************* BIOGRAFIA ************************************/
.biography .biography__separate {
    width: 80%;
    height: .5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/********************************* CONCIERTOS ************************************/
.concerts .concerts__separate {
    width: 80%;
    height: .5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/********************************* CONTACTO ************************************/
.contact .contact__hr {
    width: 80%;
    height: .5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.contact .contact__form {
    width: 70%;
    margin: 0 auto;
}

/********************************* FOOTER ************************************/
.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
}

.footer img {
    width: 70%;
}

@media (min-width: 1000px) {

    /********************************** NAVEGACION ********************************/
    .nav {
        background-color: black;
        position: -webkit-sticky;
    }

    .nav .nav__list .list__item a {
        font-size: 1.4rem;
    }

    .sticky {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 100;
        border-top: 0;
    }

    /********************************* SOCIALS ************************************/
    .socials {
        height: auto;
        padding: 2rem;
    }

    .socials .socials__list .list__item {
        margin: 0 .4rem;
    }

    .socials .socials__list .list__item a img {
        width: 55px;
    }

    /********************************* MUSICA ************************************/
    .music {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .music .music__record {
        width: 90%;
    }

    .music .music__spotify {
        width: 95%;
    }


    .music #hidden {
        display: block;
    }

    .music #hidden2 {
        display: block;
    }

    .music .music__spotify .spotify__record {
        height: 8rem;
    }

    /********************************* VIDEOS ************************************/
    .videos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

    .videos a {
        margin-bottom: 2rem;
    }

    .videos .videos__link {
        width: 90%;
        height: 20rem;
    }

    /********************************* CONCIERTOS ************************************/
    .concerts .concerts__separate {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .concerts .concerts__card {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .concerts .concerts__card .card__date {
        text-align: center;
        font-size: 1.5rem;
    }

    .concerts .concerts__card .card__dat {
        text-align: center;
        font-size: 1.3rem;
    }

    .concerts .concerts__card .card__place {
        text-align: center;
        font-size: 1.2rem;
    }

    .concerts .concerts__card .card__btn {
        padding: .7rem 0;
        margin: 0 auto;
    }

    /********************************* CONTACTO ************************************/
    .contact .contact__hr {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .contact .contact__form {
        width: 50%;
        margin: 0 auto;
        height: auto;
        padding: 1rem 0;
    }

    /********************************* BIOGRAFIA ************************************/
    .biography .biography__separate {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .biography .biography__p {
        text-align: justify;
        font-size: 1.2rem;
        text-shadow: 1px 1px black;
    }

    /* .biography .one {
        margin-bottom: 2rem;
    } */

    /********************************* FOOTER ************************************/
    .footer {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 50px, 130px;
        grid-template-areas:
            "e e e e"
            "a b c d"

        ;

        .item1 {
            grid-area: a;
        }

        .item2 {
            grid-area: b;
        }

        .item3 {
            grid-area: c;
        }

        .item4 {
            grid-area: d;
        }

        .item5 {
            grid-area: e;
            margin: 15px 0 0 0;
        }
    }

    .privacity a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: border-width 0.3s;
        border-bottom: 2px solid transparent;
        cursor: pointer;
    }

    .privacity a:hover {
        border-bottom: 2px solid #bd992e;
    }

    /* .footer img {
        /* display: block; */
    /* width: 50%; */
    /* margin: 2rem auto; */
    /* align-self: center; */
}




/********************************** SUSCRIBETE ********************************/

.newNav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-self: center;
    align-self: center;

}

.news {
    justify-self: center;
    align-self: center;
}

.news__input {
    background-color: transparent;
    color: white;
    font-size: 1.3rem;
    outline: none;
    border: 3px solid var(--color-principal);
    border-radius: 5px;
    padding: 5px 20px;
}

.news__input:nth-child(1) {
    margin-inline-end: 10px;
}

.news__btn {
    margin-block-start: 10px;
    font-size: 1.2rem;
    padding: 5px 20px;
    background-color: var(--color-principal);
    color: white;
    border-radius: 5px;
    outline: none;
    padding: 5px 50px;
}

.container__btn {
    text-align: center;
}