body {
  font-family: 'Amatic SC', cursive;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-image: url('pngwing.com.png');
}

header {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
}

main {
  padding: 20px;
}

.section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  font-weight: bold;
}
.section1 {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  font-weight: bold;
  font-size: 50px;
  text-align: center;
}
.section_galeria {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  font-weight: bold;
  width: 70%;
}
h2 {
  color: silver;
}
.section:hover {
  transform: scale(1.05);
}
.section1:hover {
  transform: scale(1.05);
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

@media (min-width: 768px) {
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section {
    width: 70%;
  }
  .section1 {
    width: 70%;
  }
}
.container {
  position: relative ;
  min-height: 100vh;
  background: #f9f9f9;

}
.container .image-container{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 10px;
}
.container .image-container .image {
  border: 10px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0,0,.1);
  overflow: hidden;
  cursor: pointer;
}
.container .image-container .image img {
  object-fit: cover;
  transition: .2s linear;
}
.container .image-container .image:hover img{
  transform: scale(1.1);
}
.image_hor{
  height: 219px;
  width: 390px;
}
.image_ver{
  height: 390px;
  width: 219px;
}
.container .popup-image{
  position: fixed;
  top: 0; left: 0;
  background: rgba(0,0,0,.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}
.container .popup-image span{
  position: absolute;
  top: 0; right: 10px;
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}
.container .popup-image img{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 750px;
  object-fit: cover;
}
@media (max-width:768px){
  .container .popup-image img{
    width: 95%;

  }
}
.content{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 50px;
  justify-content: center
}

.countup {
  font-size: 50px;
  text-align: center;
  }

.insta{
  width: 60px;
  height: 60px;
  display: inline-block;
}
.insta_text{
  font-weight: bold;
}
