
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {

    --colorx: #fff;
    --color0: #400302;
    --color1: #400302;
    --color2: #d29e19;
    --fery: #e2c67e;
    --fondo: #260909;

}

body{

    margin: 0;
    padding: 0;
    background-color: var(--fondo);
    font-family: "Poppins";
    color: var(--colorx);

}

#todo{

    display: flex;
    flex-direction: column;
    align-items: center;

}

#land{

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color2);
    height: 500px;
    width: 100%;
    background-size: cover;
    background-position: center;

}

h1{

    margin-top: 8rem;

}

#info{

    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    width: 90%;
    border-radius: 5px;
    padding: 2rem 1rem;
    border: 1px solid var(--color2);
    background-color: var(--color0);

}

.btn-produ{

    user-select: none;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 15px;
    background-color: var(--color2);
    font-weight: 600;
    text-decoration: none;
    color: var(--color1);
    transition: all 0.3s ease-in-out;
    color: var(--colorx);
    border-radius: 5px;
    border: 1px solid var(--color2);
    font-family: "Poppins";

}

.btn-produ:hover{

    cursor: pointer;
    transform: scale(105%);
    background-color: var(--color1);
    color: var(--color2);

}

#product-name{

    text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);

}

#cont-menu-consul{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 100;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgb(0, 0, 0, 0.5);

}

#cont-compra{

    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
    height: 90%;
    width: 90%;
    background-color: var(--colorx);
    border: 1px solid var(--color2);
    color: var(--color0);

}

#paypal-buttons-container{

    width: 50%;
    height: 50%;
    background-color: var(--colorx);

}

#paypal-buttons-container h2{

    font-weight: 500;
    width: 100%;
    text-align: center;

}

@media(max-width:808px){

    #paypal-buttons-container{

        width: 95%;

    }

}