@import url('https://fonts.googleapis.com/css?family=Cute+Font');
@import url('https://fonts.googleapis.com/css?family=Dosis');

*{
  margin: 0;
  box-sizing: border-box;
}
img{
  transition: 0.9s ease-in-out;
}
body{
  background-image: url("../images/back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  background-attachment: fixed;
  transition: 1s ease-in-out;
  
}

header{
  text-align: center;
  background: rgba(255, 136, 0, 0.5);
  box-shadow: 0px 20px 20px rgba(255, 136, 0, 0.733);
  padding-bottom: 150px;
  padding-top: 20px;
  font-family: 'Cute Font', cursive;
  font-display: swap;
  letter-spacing: 5px;
}
header img{
  height: 120px;
}


header h1{
  font-size: 80px;
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 15px black;
  line-height: 70px;
}
nav{
  background: rgb(0, 0, 0);
}
nav>ul>li{
  list-style-type: none;
  display: inline;
  font-size: 35px;
  cursor: pointer;
  margin: 0px 20px;
  padding: 5px 10px;
  transition: 0.3s ease-in;
  
}
nav>ul>li:hover{
  background: rgba(255, 145, 0, 0.877);
  color: black;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
  
}
nav>ul>li>a{
  color: white;
  text-decoration: none;
  display: inline-block;
}

.about{
  width: 550px;
  max-width: 100%;
  padding: 20px 40px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  font-size: 20px;
  font-family: 'Dosis', sans-serif;
  font-display: swap;
  line-height: 25px;
  letter-spacing: 1px;
  margin-top: -20vh;
  /* margin-right: 10%; */
  background: rgb(0, 0, 0);
  /* position: relative; */
 

}



h3{
  text-align: center;
  font-family: 'Cute Font', cursive;
  font-display: swap;
  font-size: 35px;
  letter-spacing: 4px;

  
}
h3 span{
  color: rgb(255, 145, 0);
  font-size: 50px;
  border: 2px solid rgb(255, 145, 0);
  padding: 0 10px;
}
main{
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.959);
  width: 100%;
  position: relative;
}
h3{
  width: 100%;
  /* background: red; */
  padding: 20px;
  margin: 10px 0px;
}
.pop, .trop{
  min-width: 400px;
  width: 30%;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
  
}
.pop:hover img, .trop:hover img{
  transform:scale(1.3);
  filter: grayscale(100%);
}

@media screen and (max-width: 550px){
  .about{
    padding: 20px;
    
  }

}