*{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, nav {
    font-family: 'Montserrat', sans-serif;
}
.hero{
    height: 70vh;
    background-image:
    linear-gradient(rgba(255,255,255,0.2), rgba(0,0,0,0.5)),
    url(../img/hero.jpg) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    /* diseño general del hero */
}
.hero button{
    background-color: transparent;
    color: inherit;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 10px;
    transition: all linear 0.5s;
    /* diseño de botones del hero */
}
button.pricing{
    border-top: none;
    border-bottom: none;
    border-color: white;
    border-left: solid 1px;
    border-right: solid 1px;
    /* pongo bordes a los costados solo del boton del medio */
}
.encabezado{
    display: flex;
    justify-content: space-between;
}
.acciones{
    display: flex;
}
.redes{
    display: flex;
}
.navegador{
    display: flex;
    justify-content: flex-end;
}
.hero button:hover{
    background-color: rgba(55, 55, 55, 0.5);
    color: rgb(9, 191, 224);
}
h1{
    text-align: center;
    padding-top: 35px;
    font-size: 70px;
}
.info{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    gap: 35px;
}
.descripcion{
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;  
    border-top: solid gray;
    /* acomodar tamaño de descripcion a un costado de la imagen */
}
.descripcion h4{
    padding-bottom: 10px;
}
.equipo{
    width: 500px;
    height: 750px;
}
.grupos{
    display: flex;
    align-content: space-around;
    padding: 35px;
    gap: 35px;
    background-color: rgb(246, 248, 250);
}
.grupos div{
    text-align: center;
}
.galeria{
    display: flex;
}
.galeria img{
    width: 25%;
    /* ancho de cada imagen a 1/4 del ancho de la pagina para asegurar un buen encaje */
}
.proyecto{
    background-image: url("../img/fondo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 35px;
}
.proyecto h2{
    font-size: 45px;
}
.proyecto button{
    max-width: 150px;
    padding: 10px;
    color: white;
    background-color: rgb(9, 191, 224) ;
    border: none;
    border-radius: 5px;
    transition: all linear 0.1s;
}
.proyecto button:hover{
    transform:scale(1.075);
    background-color:rgb(7, 159, 186) ;
}
.extras{
    display: flex;
    justify-content: space-around;
    background-color: rgb(34, 36, 42);
    color: white;
    padding: 35px;
}
.item{
    width: 20%;
}
button.sobre{
    border: none;
    border-radius: 3px;
    background-color: rgb(180, 186, 196);
    transition: all linear 0.1s;
    /* botones de redes sociales */
}
button.sobre:hover{
    transform: scale(1.05);
    background-color: rgb(210, 217, 230);
}
.noticias{
    display: flex;
    flex-direction: column;  
    width: 100%;
    border: solid rgb(48, 50, 56) 5px;
    align-items: center;
    gap: 10px;
    padding: 15px;
    /* contenedor del input hecho a parte para mostrar el borde */
}
.noticias p {
    padding-bottom: 25px;
}
.noticias input{
    background-color: rgb(34, 36, 42);
    border: solid rgb(48, 50, 56) 3px;
    color: white;
    padding: 10px;
    width: 80%;
}
.noticias button{
    padding: 10px;
    width: 80%;
    color: white;
    background-color: rgb(9, 191, 224) ;
    border: none;
    border-radius: 5px;
    transition: all linear 0.1s;
}
.noticias button:hover{
    transform:scale(1.075);
    background-color:rgb(7, 159, 186) ;
}
.posts{
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid rgb(48, 50, 56);
    gap: 5px;
}
footer{
    display: flex;
    justify-content: space-around;
    background-color: rgb(38, 39, 46);
    padding: 35px;
    color: gray;
}
footer a{
    color: inherit;
    text-decoration: none;
    padding: 5px;
    border-left: solid rgb(9, 191, 224);
    border-right: solid rgb(9, 191, 224);
    transition: all linear 0.1s;
    /* uso border left y right como separador porque no sabria como poner los puntos de manera limpia */
}
footer a:hover{
    color: white;
}

