
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  height: -webkit-fill-available;
}

body { 
  display: flex;
  flex-direction: column;
  background: rgba(50, 178, 255, 3.3) no-repeat;
  background-size: cover; 
  background-position: center;
  height: 100vh;
  height: -webkit-fill-available;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
 }

.header::before {
  content: '';
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  backdrop-filter: blur(50px);
  z-index: -1;
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  transition: .5s;
}

.header:hover::after {
  left: 100%;
}

.logo img {
  position: absolute;
  top: 1px;
  width: 120px;
  height: 67px;
  margin: auto;
 }

.navbar a {
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
 }

#check {
  display: none;
}

.icons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
}


@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}

@media (max-width: 768px) {
  .icons {
    display: inline-flex;
}

.logo img {
  position: absolute;
  top: 1px;
  width: 90px;
  height: 40px;
  margin: auto;
}


#check:checked~.icons #menu-icon {
  display: none;
}

#check:checked~.main {
  top: 850%;
}

.icons #close-icon {
    display: none;
}

#check:checked~.icons #close-icon {
  display: block;
}

.navbar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, .1); 
  backdrop-filter: blur(50px); 
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  overflow: hidden;
  transition: .3s ease;
}

#check:checked~.navbar {
  height: 17.7rem;
}


.navbar a {
  display: block;
  font-size: 1.1rem;
  margin: 1.5rem 0;
  text-align: center;
  transform: translateY(-50px);
  opacity: 0;
  transition: .3s ease;
}

#check:checked~.navbar a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: calc(.15s * var(--i));
}
}

.main {
  width: 90%;
  height: 100dvh;
 /* margin: auto; */
  position: absolute;
  top: 100%;
  left: 5%;
  flex: 1;
  overflow: scroll;
}
p {
  letter-spacing: 1px;
}

.anafoto{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 15px 0;
}
.anafoto img{
  flex-wrap: wrap;
  height:200px;
  width:200px;
  margin: 40px 0;
  object-fit: cover;
  object-position: bottom;
}

.teklifyazi {
  text-align: center;
}

.container{
  max-width: 990px;
  min-height: 2000px;
  margin: auto;
  background: #f2f2f2;
  overflow: auto;
}
.galeri{
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 320px;
}
.galeri img{
  width: 95%;
  height: auto;
}
.desc{
  padding: 15px;
  text-align: center;
}





