@font-face {
    font-family: 'Lemon Milk Light';
    src: url('fonts/LEMONMILK-Light.otf');
}
@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/CaviarDreams.ttf');
}


*{
    list-style: none;
    padding: 0;
    margin: 0;
}
body{
    color: rgb(255,255,255);
    display: flex;
    flex-direction: column;
    font-family: 'Caviar Dreams';
    overflow-x: hidden;
}
nav { 
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    font-family: 'Lemon Milk Light';
    position: absolute;
    width: 100%;
}
nav h1 {
    margin: 10px 0 10px 20px;
    font-size: 22px;
}
nav ul {
    display: none;
    align-items: center;
}
nav ul li {
    margin: 0 15px 0 15px;
    font-size: 14px;
}
nav ul li:hover{
    color: rgba(255,255,255,0.4);
    cursor: pointer;
}
.menu_btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.menu_btn_burger{
    width: 30px;
    height: 3px;
    background: rgb(255,255,255);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.menu_btn_burger::before,
.menu_btn_burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: rgb(255,255,255);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.menu_btn_burger::after{
    transform: translateY(-10px);
}
.menu_btn_burger::before{
    transform: translateY(10px);
}
/* menu animation */
.menu_btn.menu_open .menu_btn_burger {
    background: transparent;
}
.menu_btn.menu_open .menu_btn_burger::before {
    transform: rotate(45deg);
}
.menu_btn.menu_open .menu_btn_burger::after {
    transform: rotate(-45deg);
}
main {
    background-color: darkslategray;
}
section{
    display: flex;
    flex-direction: column;
    border: 1px solid red;
    margin: 40px;
}
.banner{
    background-image: url("img/corazon_1_1280x853.jpg");
    background-size: cover;
    width: 100vw;
    height: 100vh;
    margin: 0;
}
form {
    display: flex;
    flex-direction: column;
    width: 80%;
    border: 1px solid green;
}
form input {
    width: 20%;
}
footer{
    text-align: center;
    background-color: black;
}
footer ul{
    display: flex;
    justify-content: center;
    margin: 35px 0 35px 0;
}
footer ul li{
    margin: 0 10px 0 10px;
}
footer ul li:hover{
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}
footer p {
    margin: 15px 0 45px 0;
}

@media only screen and (min-width: 1100px) {
    
    body{ 
        border: 1px solid green;
    }
    .menu_btn{
        display: none;
    }
    nav ul {
        display: flex;
        align-items: center;
    }
    nav ul li {
        margin: 0 15px 0 15px;
        font-size: 14px;
    }

}