@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@0;1&display=swap');

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #e9fef4;
}

.hidden{
    opacity: 0;
    filter: blur(2px);
    transition: all 1s;
    transform: scale(0.5);
}

.show{
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

header{
    background-color: #e9fef4;
    background-image: radial-gradient(#2c4f4070 1.35px, #e9fef4 1.35px);
    background-size: 27px 27px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-content{
    width: 80vw;
    color: #2c4f40;
    background-color: #e9fef490;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    border: solid 1px #d2e4d690;
    box-shadow: 5px 5px 10px #d2e4d6;
}

.place-logo{
    width: auto;
    height: auto;
    border-radius: 100%;
}

.topnav {
    overflow: hidden;
    background-color: #2c4f40;
  }
  
  .topnav a {
    float: left;
    color: #e9fef4;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #d2e4d6;
    color: #2c4f40;
  }
  
  .topnav a.active {
    background-color: #00a871;
    color: white;
  }


main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.item-container{
    background-color:#e9fef4;
    box-shadow: 10px 10px 6px #d2e4d6;
    border: solid 1px #d2e4d6;
    border-radius: 30px;
    color: #2c4f40;
    width: 80vw;
    padding: 1rem;
    margin: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.item-img{
    border-radius: 25px;
    width: 32%;
    height: auto;
}


.item-details{
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.item-bottom-details{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.item-price{
    letter-spacing: 2px;  
}

.choose-item{
    letter-spacing: 3px;
    background-color: #00a871;
    height: 3rem;
    width: 10vw;
    border: none;
    border-radius: 30px;
    color: #e9fef4;
    font-weight: 900;
    transition:1s;
}
.choose-item:hover{
    background-color: #00a85a;
    transition: 0.5s;
    cursor: pointer;
}

.footer-contenido{
    margin-top: 2rem;
    background-color: #2c4f40;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 35vh;
    color: #e9fef4;
    box-shadow: inset 0 7px 9px -7px #333;
}
.redes-sociales{
    height: 60%;
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.social-icon{
    color: #e9fef4;
    font-size: 2.5rem;
    transition: 0.5s;
}

.social-icon:hover{
    color: #00a871;
    transition: 0.3s;
}



@media (max-width: 700px) {
    header{
        height: auto;
    }
    .header-content{
        padding: 1.5rem;
        margin: 1rem;
    }
    .item-container{
        flex-direction: column;
        align-items: center;
    }
    .choose-item{
        width: 40%;
    }
    .item-img{
        width: 50%;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .footer-contenido{
        flex-direction: column;
        padding-top: 1.5rem;
    }
    .redes-sociales{
        width: 60%;
    }
  }