body, html{
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

img{  
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.alerts{
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 51;
}

.alert#blue {
  position: relative;
  width: 100%;
  height: 40px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #2196F3;
}

.alert#blue h2#cookies{
  width: 90%;
  font-size: clamp(0.1rem, 0.3vw + 0.5rem, 1rem);
  color: white;
  padding-left: clamp(1%, 1vw + 0.5rem, 3vw);
}

.closebtn {
  width: 2%;
  color: white;
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  margin-left: auto;
  margin-right: clamp(1vw, 0.5vw + 1rem, 5vw);
  float: right;
}

.closebtn:hover {
  color: black;
}

.active{
  display: inline;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-duration: 300ms;
  z-index: 10;
}

.inactive{
  opacity: 1;
  animation-name: fadeOutOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-duration: 300ms;
  display: none;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOutOpacity {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

a{
  border-radius: 0;
  text-decoration: none;
}

a#cook{
  color: white;
}

a#cook:hover{
  text-decoration: underline;
  cursor: pointer;
}

h1, h2{
  text-align: center;
}

h1#c-lscape, h1#c-moon, h1#c-marv{
  font-size: clamp(0.1rem, 2vw + 1.3rem, 2rem);
  margin-bottom: 0;
}

h2#loc{
  font-size: clamp(0.1rem, 0.6vw + 0.8rem, 1.2rem);
  font-weight: 400;
}

h2#pim{
  margin-left: 1%;
  margin-right: 1%;
  font-size: clamp(0.1rem, 0.6vw + 0.8rem, 1.2rem);
  font-weight: 400;
}

h3#warning{
  color: red;
  font-size: 0.8rem;
  text-align: center;
  background-color: black;
  border-radius: 20px;
  margin: 1rem;
  padding: 0.5rem;
}

.container{
  width: 100%;
}

.container-frame{
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pro{
  position: absolute;
  width: 100%;
  aspect-ratio: inherit;
  background-color: black;
  opacity: 0;
  z-index: 50;
}

.pro#img{
  position: absolute;
  opacity: 0.5;
  aspect-ratio: 2/1;
}

.layer{
  position: absolute;
  width: 100%;
  aspect-ratio: inherit;
  background-color: black;
  opacity: 0.5;
  z-index: -1;
}

img{
  width: 100%;
}

.sampul#pc{
  position: absolute;
  aspect-ratio: 2/1;
  z-index: -1;
}

.sampul#phone{
  position: absolute;
  display: none;
  aspect-ratio: 3/4;
  z-index: -1;
}

.home{
  width: 100%;
  aspect-ratio: 2/1;
}

.home-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2/1;
}

.home-container h1{
  margin: 5% 2%;
  font-size: clamp(0.5rem, 2vw + 1rem, 2rem);
  color: white;
}

.home-container h2{
  font-size: clamp(0.1rem, 0.5vw + 0.7rem, 1rem);
  color: white;
}

.logo#pc{
  width: min(60vw, 450px);
  z-index: 1;
}

.gallery{
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1%;
}

/* .gallery-frame{
  display: flex;
  flex: 49.5%;
  max-width: 49.5%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.gallery-container h2{
  font-size: 1rem;
}

.button-frame{
  width: 100%;
  margin-top: 2.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 5%;
}

button{
  width: min(40vw, 250px);
  height: 50px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: min(3vw, 1.2rem);
  font-weight: 600;
  text-align: center;
  color: white;
  cursor: pointer;
  border: solid;
  border-width: 4px;
  border-color: white;
  background: rgb(255,0,0);
  background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(8,191,8,1) 49%, rgba(0,43,255,1) 100%);
  transition-duration: 300ms;
}

button#lscape:hover{
  border-color: rgba(255,0,0,1);
}

button#moon:hover{
  border-color: rgba(8,191,8,1);
}

button#marv:hover{
  border-color: rgba(0,43,255,1);
}

button:hover{
  background: white;
  border-width: 4px;
  color: black;
  box-sizing: border-box;
}

.gallery-frame{
  display: flex;
  flex: 49.5%;
  max-width: 49.5%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-frame#por{
  flex: 32%;
  max-width: 32%;
}

.gallery-frame#span{
  flex: 100%;
  max-width: 100%;
}

.gallery-frame2{
  display: flex;
  flex: 49.5%;
  max-width: 49.5%;
  margin-bottom: 1%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-frame2#por{
  flex: 32%;
  max-width: 32%;
}

.gallery-frame2#span{
  flex: 100%;
  max-width: 100%;
}

.footer{
  width: 100%;
}

.footer-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div#hglooweb{
  width: min(60vw, 350px);
  aspect-ratio: 2/1;
  background-image: url(https://ik.imagekit.io/wi13omdv75/logos/hglooweb_logo.png?updatedAt=1657511725991);
  background-size: min(60vw, 350px), auto;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.footer-container h2{
  font-size: 1rem;
}

.gotop a:hover{
  text-decoration: underline;
  cursor: pointer;
}

/* 
@media screen and (max-width: 395px) 
@media screen and (min-width: 395px) and (max-width: 480px)
@media screen and (min-width: 480px) and (max-width: 600px)
@media screen and (min-width: 600px) and (max-width: 660px)
@media screen and (min-width: 660px) and (max-width: 768px)
@media screen and (min-width: 768px) and (max-width: 880px)
@media screen and (min-width: 880px) and (max-width: 992px)
@media screen and (min-width: 992px) and (max-width: 1200px)
@media screen and (min-width: 1200px) and (max-width: 1382px)
*/

@media screen and (max-width: 880px){
  .layer{
    aspect-ratio: 3/4;
  }

  .sampul#pc{
    display: none;
  }

  .sampul#phone{
    display: inline;
  }

  .home, .home-container{
    aspect-ratio: 3/4;
  }

  .gallery-frame{
    flex: 100%;
    max-width: 100%;
  }
  
  .gallery-frame#por{
    flex: 100%;
    max-width: 100%;
  }

  .gallery-frame2{
    flex: 100%;
    max-width: 100%;
  }
  
  .gallery-frame2#por{
    flex: 100%;
    max-width: 100%;
  }
}