*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
  margin: 0;
}

.popup-main {
  display: none;
  background-color: rgba(186, 186, 186, 0.651);
  position: fixed;
  padding: 45px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  text-align: center;
}
.popup-main .popup-in {
  background-color: rgb(164, 163, 163);
  margin: 0 auto;
  max-width: 600px;
  height: 85vh;
  overflow: scroll;
  padding: 40px;
}
.popup-main .popup-in .popup-btn {
  color: #fff;
  border: none;
  padding: 15px;
  margin-top: 30px;
  width: 50%;
  border-radius: 20px;
  background-image: linear-gradient(45deg, rgb(248, 4, 156), rgb(253, 213, 79));
  transition: transform, 0.3s;
}
.popup-main .popup-in .popup-btn:hover {
  transform: scale(1.2);
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 15px;
  height: 100px;
  position: fixed;
  top: 0;
  background-color: rgb(255, 255, 255);
  z-index: 2;
  box-shadow: 2px 1px 11px rgb(200, 200, 200);
}
nav .name {
  width: 415px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  font-family: "Montserrat", sans-serif;
}
nav img {
  width: 90px;
}
nav .tumigamy {
  width: 250px;
  font-family: "Courgette", cursive;
}

h1 {
  font-size: 1.5rem;
  text-align: center;
  padding: 10px;
  letter-spacing: 3px;
}
h1 span {
  color: rgb(255, 255, 255);
  font-family: "Courgette", cursive;
  padding: 6px;
  border: 3px solid linear-gradient(45deg, #d63a75);
  border-radius: 50%;
  background-color: #d63a75;
}

header {
  margin: 0 auto;
  margin-top: 130px;
  width: 70vw;
  background-color: rgb(255, 255, 255);
}
header hr {
  width: 80%;
  height: 5px;
  border: 0 none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  background-image: linear-gradient(45deg, rgb(248, 4, 156), rgb(253, 213, 79));
}
header p {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding-bottom: 20px;
  letter-spacing: 2px;
}

h2 {
  font-size: 2rem;
  text-align: center;
  font-family: "Courgette", cursive;
  letter-spacing: 3px;
  padding: 10px;
  line-height: 45px;
}

main {
  margin: 0 auto;
  width: 70%;
  background-color: rgb(255, 255, 255);
}
main .first {
  height: 40vh;
  width: 88%;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border: 1px solid rgb(200, 200, 200);
  border-radius: 20px;
  transition: box-shadow 0.4s;
  z-index: 1;
}
main .first img {
  width: 170px;
}
main .first a {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
}
main .first:hover {
  box-shadow: 0px 0px 15px rgb(200, 200, 200);
  cursor: pointer;
}
main .statute {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
  justify-content: center;
}
main .statute video {
  width: 210px;
  height: 170px;
}
main .statute p {
  width: 135%;
  padding: 20px;
  margin: 20px;
  font-size: 1.3rem;
}
main .statute p button {
  border: none;
  background-color: #fff;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
}
main .statute p button:hover {
  cursor: pointer;
}

.link {
  position: relative;
  text-decoration: none;
  color: black;
  padding: 5px;
}

.link,
.link::after,
.link::before {
  transition: 0.4s;
}

.two {
  z-index: 0;
}

.two::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 5px;
  background-image: linear-gradient(45deg, rgb(248, 4, 156), rgb(253, 213, 79));
  z-index: -1;
}

.first:hover > a {
  color: rgb(255, 255, 255);
}

.first:hover > a::after {
  height: 90%;
}

.box-images {
  width: 70vw;
  height: 100%;
  overflow-x: hidden;
}

.images {
  position: fixed;
  width: 31vw;
  height: 48vh;
  z-index: -1;
}

.upleft {
  top: 30%;
  left: -15%;
  transform: rotate(298deg);
}

.upright {
  top: 40%;
  left: 81%;
  transform: rotate(87deg);
}

footer {
  width: 100%;
  height: 6vh;
  background-image: linear-gradient(45deg, rgb(248, 4, 156), rgb(253, 213, 79));
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
footer p {
  color: rgb(248, 247, 240);
  margin: 0 auto;
  height: 100%;
  width: 50%;
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 6vh;
}

@media (max-width: 576px) {
  h1 span {
    padding: 6px;
  }
}
@media (min-width: 576px) {
  nav .tumigamy {
    font-size: 2rem;
  }
  h1,
  h2 {
    font-size: 2.5rem;
  }
  main .first {
    height: 45vh;
    width: 60%;
  }
  main .first img {
    width: 200px;
  }
  main .first a {
    font-size: 1.5rem;
    padding: 10px;
  }
  main .statute video {
    width: 320px;
    height: 240px;
  }
  main .statute p {
    font-size: 1.5rem;
    width: 100%;
  }
}
footer {
  height: 6vh;
}

@media (min-width: 768px) {
  nav .tumigamy {
    font-size: 3.5rem;
  }
  h1,
  h2 {
    font-size: 2.5rem;
  }
  main .first {
    height: 45vh;
  }
  main .first a {
    font-size: 2rem;
  }
  main .first p {
    font-size: 2rem;
  }
  main .statute p {
    width: 85%;
  }
  footer {
    height: 7vh;
  }
  footer p {
    line-height: 7vh;
  }
}
@media (min-width: 992px) {
  nav .name {
    width: 415px;
  }
  nav .tumigamy {
    width: 330px;
    font-size: 3rem;
  }
  h1,
  h2 {
    font-size: 2.5rem;
  }
  main .first {
    height: 55vh;
    width: 57%;
  }
  main .first img {
    width: 250px;
  }
  main .first a {
    font-size: 3rem;
  }
  main .statute p {
    width: 60%;
  }
  footer {
    height: 8vh;
  }
  footer p {
    line-height: 8vh;
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */