@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  background-color: black;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-size: 100%;
}
nav{
  background:transparent;
  padding: 10px 40px;
}
nav ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
nav ul li{
  padding: 10px 0px 10px 0px;
  cursor: pointer;
}
nav ul li.items{
  position: relative;
  width: fit-content;
  text-align: center;
  margin-left: 2.2rem;
  order: 3;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: 0.6;
}
nav ul li a{
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: .4s;
}
nav ul li:hover a{
    color:rgb(139, 139, 139);
}
nav ul li i{
  font-size: 25px;
}
nav ul li.btn{
  display: none;
}
nav ul li.btn.hide i:before{
  content: '\f00d';
}
@media all and (max-width: 1025px){
  nav{
    padding: 5px 30px;
  }
  nav ul li.items{
    width: 100%;
    display: none;
    margin-left: 0rem;
  }
  .logo{
    align-items: center;
    display: block;
  }
  nav ul li.items.show{
    display: block;
  }
  nav ul li.btn{
    display: block;
  }
  nav ul li:hover a{
    color:rgb(139, 139, 139);
  }
}
/*-----GALLERY FILE-----*/
.error{
  width: 100%;
  min-height: 100vh;
  padding: 70px 8%;
  align-items: center;
  justify-content: center;
}
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  grid-gap: 10rem;
}
.gallery img{
  width: 100%;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}
.gallery h1{
  font-size: 1.85rem;
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  background-color: white;
  color: black;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
  text-align: center;
}
a:link{
  text-decoration: none;
}
/*-----GALLERY FILE-----*/
footer{
  margin-top: auto;
}
.footer-content {
  background-color: black;
  display: flex;
  width: 100vw;
  position: sticky;
  position: bottom;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  letter-spacing: .3rem;
}
.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.82rem 0 1.75rem 0;
}
.socials li {
  margin: 0 1.3rem;
}
.socials a{
  text-decoration: none;
  color: white;
}
.socials a i{
  font-size: 1.5rem;
  transition: 0.3s;
}
.socials a:hover i{
  color:rgb(139, 139, 139);
}