@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    overflow: hidden;
 

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgb(0, 0, 0) 100%),
        url(img/fondo.jpg);
        background-size: cover;
}

nav{
    width: 100%;
    height: 10vh;
}

.container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container .logo img{
    margin-left: 20px;
    width: 100px;
    filter: drop-shadow(2px 2px 2px #04eb2a);
}

.container .links a{
    color: white;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    margin: 0 20px;
    transition: 0.3s linear;
}

.links a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    background-color: #05bd52;
    height: 3.5px;
    transition: 0.3s linear;
}

.links a:hover::before,
.links a:hover{
    color: #05bd0e;
    width: 100%;
}


/* Section Starts */

section{
    width: 100%;
    height: 90vh;
}

section .content{
    display: flex;
    width: 110%;
    height: 90%;
    justify-content: space-around;
    align-items: center;
}

.content .main-content{
    color: white;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.main-content h1{
    margin-top: 0px;
    font-size: clamp(2rem, 1rem + 5vw, 4rem);
}

.main-content h2{
    margin-top: 0px;
    color: #14bd05;
    font-size: clamp(2rem, 1rem + 5vw, 3.5rem);
}

.main-content p{
    margin-top: 10px;
    color: #9c9795;
}

.main-content .order{
    display: flex;
    margin: 20px 10px;
    width: 100%;
    justify-content: space-around;
    min-height: 7vh;
}

.order h3{
    font-size: 1.8rem;
}

.order button{
    min-width: 50%;
    margin-left: 10px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: linear-gradient(to bottom right, #14bd05 40%, #06c425) ;
    color: white;

    padding: 0 2px;
    font-size: 20px;
    transition: 0.1s linear;
}

.order button:hover{
    box-shadow:  0 0 30px #05bd05;
    background: linear-gradient(to bottom right, #09b109 ,  #05bd14 40%) ;
}

.content .image img{
    max-width: 600px;
    width: 120%;
    margin-right: 250px;
    transform: rotate(40deg) translateX(900px);
    filter: drop-shadow(-20px -20px 200px #05ad3d);
}

@media (max-width:800px){
    .content{
        display: flex;
        width: 100%;
        flex-direction: column-reverse;
    }

    .main-content{
        margin: 0 10px;
     
    }
}

@media (min-width:884px){
    .content .image img{
        min-width: 500px;
    }
}

@media (max-width:440px){

    section .content{
   
        width: 100%;
        height: 80%;
        justify-content: space-around;
        
    }
 


    

 
    .links{
        display: none;
    }


    .order button{
        min-width: 50%;
        margin-left: 0px;
        border: none;
        outline: none;
   
        color: rgb(255, 247, 247);
       font-size: 20px;
        padding: 0 0px;
     
    }

    .content .image img{
        max-width: 500px;
        width: 100%;
        margin-right: 100px;
   
     
       
    }
    .main-content h1{
        margin-left: 10px;
        margin-top: 0px;
    }
    .main-content h2{
        margin-left: 10px;
    }
    .main-content h4{
        margin-left: 10px;
    }
    .main-content p{
        margin-left: 10px;
        margin-top: 0px;
    }
   

  .main-content .ico1{
    margin-left: 10px;
  }

}



.main-content  .ico1{
    color: aliceblue;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
  margin-top: 10px;
    font-size: 20px;
    transition: .3s;
}

.main-content  .ico2{
    color: rgb(255, 255, 255);
    display: inline-block;
    text-decoration: none;
    background-color: #017711;
    border: 1px solid #ffffff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
  margin-top: 10px;
    font-size: 20px;
    transition: .3s;
}

.main-content  .ico3{
    color: rgb(255, 255, 255);
    display: inline-block;
    text-decoration: none;
    background-color: #014277;
    border: 1px solid #ffffff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
  margin-top: 10px;
    font-size: 20px;
    transition: .3s;
}

.main-content  .ico4{
    color: rgb(255, 255, 255);
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(
        180deg,
        rgba(88, 2, 114, 0.8) 0%,
        rgb(138, 117, 1) 100%);
      
  
    border: 1px solid #ffffff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
  margin-top: 10px;
    font-size: 20px;
    transition: .3s;
}

.main-content  .ico5{
    color: rgb(235, 2, 2);
    display: inline-block;
    text-decoration: none;
    background-color: #dadada;
    border: 1px solid #ffffff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
  margin-top: 10px;
    font-size: 20px;
    transition: .3s;
}

.main-content a:hover{
    background-color: #01cf1c;
}


