@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
   

  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  background-position: center center;
  background-size: cover;
  transition: 0.4s; margin-top: 1em;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
   

  z-index: -1;
}

.slider-containergal {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  height: 70vh;
  width: 70vw;
  position: relative;
  overflow: hidden;
}

.slideg {
  opacity: 0;
  height: 120vh;
  width: 100vw;
 
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -15vh;
  left: -15vw;
  transition: 0.4s ease;
  background-repeat: no-repeat;
  z-index: 1;
}

.slideg.activeg {
  opacity: 1;
}

.arrow {
  position: fixed;
  background-color: transparent;
  color: #fff;
  padding: 20px;
  font-size: 30px;
  border: none;

  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.arrow:focus {
  outline: 0;
}

.left-arrow {
  left: calc(15vw - 65px);
}

.right-arrow {
  right: calc(15vw - 65px);
}

/* site redirections */
.site-btn-container {
  display: flex;
  flex-direction: column;
  /* margin-top: 1.2em; */
}
.site-btn {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid rgb(229, 255, 0);
  margin: 0 auto;
  color: rgb(229, 255, 0);
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}
.gal-site-head {
  color: #f2f2f2;

  font-size: 18px;

  letter-spacing: 1px;

  margin: 0 auto;
  margin-top: 1em;
}


@media(max-width:540px)
{

  .slider-containergal {
      box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
      height: 70%;
      width: 70%; 
      position: relative;
      overflow: hidden; 
  }

      .slideg {
      opacity: 0;
        height: 100vh;
        width: 100vw;
        background-position: center center;
        background-size: contain;
        position: absolute;
        top: -15vh;
        left: -15vw;
        transition: 0.4s ease;
        z-index: 1;
        /* object-fit: cover; */
        background-repeat: no-repeat;

    }
}