*{

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Josefin Sans', sans-serif;
}

.background{
  background-image: url(background\ image.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}

nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px;
  padding-left: 8%;
  padding-right: 8%;
}
nav h2{
  color: rgb(255, 255, 255);
  font-size: 50px;
  cursor: pointer;
  letter-spacing: 1px;
}
span{
  color: #000000;
}
 
nav ul li {
    font-size: 25px;
    display: inline-block;
    padding: 30px 60px;
    list-style-type: none;
}

nav ul li a{
   color: rgb(255, 255, 255);
   text-decoration: none;
   font-weight: bold;
   text-transform: capitalize;
}

nav ul li a :hover{
  color: #26e25b;
  transform: scale(1.5);
}

.Main{
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50);
  align-items: center;

}

h4{
  color:rgb(255, 255, 255);
  margin: 2px;
  font-size: 20px;

}

h1{
  color: white;
  margin: 20px 0px 20px;
  font-size: 75px;
}

h3{
  color: white;
  font-size: 25px;
  margin-bottom: 50px;
}

.background-color-prototipo{
  background-color: rgb(0, 0, 0);
  width: 100%;
  padding: 100px 0px;
}

.background-color-prototipo img{
  width: 430px;
  height: auto;

}
.text-prototipo{
  width: 550px;
}
.Main-prototipo{
  display:flex;
  align-items: center;
  justify-content: space-around;
  width: 1530px;
  margin: auto;
  color: white;
  
}

.text-prototipo h2{
  font-size: 150px;
  text-transform: capitalize;
  margin-bottom: 20px ;
}

.text-prototipo h5{
  font-size: 50px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.text-prototipo p{
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
}
.link-as-button{
  font-size: large;
  background-color: #17933a;
  color: azure;
  text-transform: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 35px 60px;
  border-radius: 30px;
  transition: .4s;
}
.link-as-button:hover{
  background-color: transparent;
  border: 2px solid #26e25b;
  cursor: pointer;
}

.Main-membros{
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}
.container{
  max-width: 1200px;
  width: 100%; 
  
}
.container h1{
  color: #fff;
}
.main-card .cards{
  display: flex;
  justify-content: space-between;

}
.main-card .cards .card{
  width: calc(100%/3 -10px);
}
.cards .card .content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cards .card .content .img{
  height: 230px;
  width: 230px;
  margin-bottom: 20px;

}
.card .content .img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card .content .details .name{
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.card .content .details .job{
  font-size: 20px;
  color: #26e25b;
}
.card .content .media-icons{
  display: flex;
  margin-top: 10px;
}

.card .content .media-icons a{
  height: 35px;
  width: 35px;
  color: #fff;
  background: #26e25b;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 14px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}
.card .content .media-icons a:hover{
  border-color: #26e25b;
  color: #26e25b;
  background: #fff;
}

.background-color-artefatos {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 0, 0);
}

.Main-artefatos{
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.container-artefatos {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.images {
  display: flex;
  
}
.images img {
  height: 300px;
  width: 80%;
}
.images input {
  display: none;
}

