*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #040000;
    color: whitesmoke;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1.3rem;
}

main h1{
    font-weight: bolder;
    font-size: 1.9rem;
}

main h1 span{
    display: block;
    color: #e59d02;
    text-decoration: underline;
}

main p{
    padding: 1rem;
    font-size: 1.3rem;
} 

main .botones{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center ;
}


main .boton-uno, main .boton-dos,section .boton-uno,section .boton-dos{
    border-radius: 100px;
    padding: 1rem 2rem;
    font-weight: bolder;
   
}

main .boton-uno{
    background-color: #e59d02;
}

main .boton-dos{
    border:  0.2rem solid #343030 ;
}

main .img{
    background-color: #231f17;
    padding: 1.3rem;
    border-radius: 20px;
}

main .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
    gap: 1rem;
}


section .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

section h2 span{
    border-bottom:  1px solid #e59d02;
}

section .contenedor-tarjetas{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

section .tarjeta{
    background-color: #191919;
    padding: 2rem;
    border-radius: 20px;
}

section .contenedor-tarjetas .tarjeta img{
    width: 20%;
    margin-bottom: 1rem;
}

section .botones{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem;
}


section .boton-uno{
    background-color: #e59d02;
    color: whitesmoke;
    padding: 1rem 1.5rem;
}

section .boton-dos{
    border: 0.09rem solid #e59d02;
    color: #e59d02;
    padding: 1rem 1.5rem;
}

@media screen and (min-width: 768px) {
    main{
        padding: 4rem;
    }

   main h1{
    font-size: 3.3rem;
   }

   main .botones{
    flex-direction: row;
    gap: 1rem;
   }

   section .contenedor-tarjetas{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    grid-template-rows: repeat(2, 1fr);
   }
}