@import url('https://fonts.googleapis.com/css2?family=Pangolin&family=Permanent+Marker&display=swap');

* {
  font-family: "Pangolin";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

body {
  background-color: black;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 

body::-webkit-scrollbar {
  display: none;
}


.container {
  padding: 25px 10%;
  text-align: center;
  position: relative;
  z-index: 10;
}

input {
  outline:none;
  border: 3px solid white ;
  box-shadow: 0 0 5px #e2e2e2;
}

input:focus { 
  outline:none;
  border: 3px solid #04f2ff !important;
  box-shadow: 0 0 10px #04f2ff;
}
.container #search-box {
  width: 600px;
  border: 3px solid #fff;
  padding: 12px 15px;
  font-size: 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.container .image-container, .logo-containter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  padding-bottom: 100px;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: center;
  align-items: center;
}
.container .image-container .image {
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 0px 8px rgb(255 255 255);
  border: 4px solid #ffffff;
  width: 350px;
  border-radius: 5px;
  animation: fadeIn 0.2s linear;
}

.return-container {
  position: absolute;
  width: 150px;
  left: 14%;
  top: 115px;
}

#return:hover {
  cursor:pointer;
}

#return {
  width: 100%;
}

.container .image-container .image img:not(#download,#logo,#copy,.return-container,#return){
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.41);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.41);
  box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.41);
}

.container .image-container .image img:not(#download,#logo,#copy,.return-container,#return):hover {
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.6);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.6);
  box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.6);
}

.container .image-container .image:hover {
  box-shadow: 0 5px 19px #04f2ff;
  border: 4px solid #04f2ff;
  transform: scale(1.05);
}

#logo {
	 width: 350px;
	 padding-bottom: 25px;
}

#download, #copy {
	width: 30px;
	height: 30px;
  margin-left: 20px;
  margin-bottom: 0px;
  cursor: pointer;
}

img:not(#download,#logo,#copy,.return-container,#return) {
  cursor: zoom-in;
}

#footer {
  width: 100%;
  background-image: url(../site/footer.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 0;
  height: 0;
  opacity: 0.4;
  padding-top: 41.66%;  
}

@keyframes fadeIn {
  0% {
    transform: scale(0.5) translateY(-10px);
    opacity: 0;
  }
}

.container .image-container .image img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 5px;
}

.container .image-container .image h3 {
  font-size: 20px;
}

@media (max-width: 1445px) {
  .return-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .container #search-box {
    width: 100%;
  }

}

@media (max-width: 450px) {
  .container {
    padding: 25px 20px;
  }

  .container .image-container .image {
    width: 100%;
  }
}
