@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body{
	font-family: 'Poppins', sans-serif;
	display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.nav {
	padding: 2rem;
	background-color: transparent;
	transition: background-color 0.5s, padding 0.5s ease-in-out 0.1s;
}

.nav.scroll {
	background-color: #11111195;
	backdrop-filter: blur(10px);
	padding: 1rem;
}
.navbar-text {
	/* Texto italico */
	font-style: italic;
}
main {
   flex: 1 0 auto;
  }
.hero {
  background-image: url(../img/work2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  z-index: -2;
}
.hero h1 {
  font-size: 46px;
  margin: -20px 0 20px;
}

.hero p {
  font-size: 20px;
  letter-spacing: 1px;
}

.imgRedonda {
    width:300px;
    height:300px;
    border-radius:150px;
    align-content: center;
    display:block;
    margin:auto;
    padding: 1em;
}

img{
	max-width: 100%; 
	height: auto; 
}

.contain{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.box img{
    width: 90%;
    height: 90%;
    object-fit: cover;
}


.margen{
  margin-top: 1em;
}