body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
}
header {
    background-color: #DBD335;
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.header_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-left: 2%;
}
.header_carrito{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10%;
}
.btn_registrate {
    padding: 10px 10px;
    font-family: sans-serif;
    font-weight: 600;
    border: 0;
    color: black;
    background-color: white;
    border-radius: 15px;
}

.btn_registrate:hover {
    border: 1px solid;
    cursor: pointer;
    font-weight: 600;
    transition: .4s ease;
    margin-bottom: 5px;
}
h1{
    font-size: 60px;
    font-family: cursive;
}
.logo{
    display: flex;
    border-radius: 20px;
    width: 300px;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #DBD335;
}
nav a {
    color: black;
    padding: 14px 20px;
    justify-content: space-between;
    text-decoration: none;
    text-align: center;
    font-family: arial;
    font-size: 18px;
}
nav a:hover {
    border-radius: 30%;
    transition: all .6s ease-in-out;
    background-color: #d7dbdd;
}
section{
    margin: 10px 50px;
    display: flex;
}
p{
    font-size: 16px;
    border-radius: 10px;
    background-color: #eaeded;
    padding: 50px;
}
.presentacion{
    display: flex;
    flex-direction: column;
    margin: 15px 30px;
}
.ima_presentacion{
    width: 650px;
    height: 350px;
    border-radius: 20px;
}

.ima_presentacion:hover{
    transition: all .5s ease-in-out;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width:800px){
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #f4f4f4;
    }
    header {
        background-color: #DBD335;
        color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .header_logo{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        margin-left: 2%;
    }
    .header_carrito{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 5%;
        padding-block: 10px;
    }
    img.logo{
        width: 250px;
        display: flex;
        border-radius: 20px;
    }
    .btn_registrate {
        padding: 8px 8px;
        font-family: sans-serif;
        font-weight: 500;
        border: 0;
        color: black;
        background-color: white;
        border-radius: 15px;
        font-size: 14px;
    }

    .btn_registrate:hover {
        border: 1px solid;
        cursor: pointer;
        font-weight: 600;
        transition: .4s ease;
        margin-bottom: 5px;
    }
    h1{
        font-size: 34px;
        font-family: sans-serif;
    }
    nav {
        display: flex;
        justify-content: center;
        background-color: #DBD335;
    }
    nav a {
        color: black;
        padding: 14px 20px;
        justify-content: space-between;
        text-decoration: none;
        text-align: center;
        font-family: arial;
        font-size: 18px;
    }
    nav a:hover {
        border-radius: 30%;
        transition: all .6s ease-in-out;
        background-color: #d7dbdd;
    }
    section{
        margin: 10px 20px;
        display: flex;
        flex-direction: column;
    }
    .presentacion{
        display: flex;
        flex-direction: column;
        margin: 10px 30px;
    }
    .ima_presentacion{
        width: auto;
        height: 200px;
        max-width: 350px;
    }
    p{
        padding: 20px;
    }
    h2{
        margin: 5px;
    }
}