body{
    margin: 0;
    padding: 0;
    background: black;
    width: 100%;
    overflow-x: hidden;
}
header{
    width: 100%;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    z-index: 10;
    position: fixed;
    top: 0;
}
a{
    text-decoration: none;
    color: white;
}
p, h1, h2{
    margin: 0;
}
.flex{
    display: flex;
}
.header-div1_links_logo{
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    width: 100%;
}
.header-div1_links_logo h1{
    margin-left: 30px;
}
.header-div1_links{
    background: rgba(121, 121, 121, 0.952);
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
}
.header-div2_links{
    width: 90%;
    text-align: end;
    padding: 10px 0;
}
.header-div2_links a{
    color: white;
    text-decoration: none;
    font-size: 25px;
    margin: 0;
    margin-right: 50px;
    font-family: 'Quicksand', sans-serif;
}
.seccion1{
    width: 100%;
    margin-top: 10vh;
    color: white;
    font-family: 'Quicksand', sans-serif;
}
.container1{
    width: 100%;
    display: flex;
}
.div1{
    background: rgb(39, 39, 39);
    box-shadow: 0 0 10px black;
    width: 100%;
    margin: 0 2%;
    margin-bottom: 40px;
}
.title_div{
    background: rgb(82, 82, 82);
    text-align: center;
    width: 100%;
    font-size: 25px;
}
.container_info{
    display: flex;
    justify-content: center;
    width: 100%;
}
.img1{
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info_div{
    width: 100%;
    padding-top: 20px;
    padding-left: 5px;
    font-size: 20px;
}
.button_div{
    font-size: 17px;
    background: rgb(82, 82, 82);
}
h2{
    font-size: 30px;
    margin-left: 12px;
}
.compra_div{
    width: 100%;
    text-align: center;
    padding: 3px 0;
    transition: background-color 0.7s;
    display: flex;
    background: rgb(26, 26, 26);
    justify-content: center;
}
.compra_div:hover{
    background: rgb(70, 70, 70);
    box-shadow: 0 0 10px black;
}
@media screen and (max-width: 770px){
    .header-div2_links{
        display: none;
    }
    .seccion1{
        margin-top: 9.8vh;
    }
    .container1{
        margin: 0;
        display: block;
    }
    .div1{
        margin: 0;
        width: 95%;
        margin-bottom: 25px;
        margin-left: 2.5%;
    }
    .button_div{
        font-size: 25px;
        background: transparent;
    }
    .compra_div{
        background: rgb(94, 94, 94);
        border-radius: 100vh;
    }
}