@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:900&display=swap");

@font-face {
  font-family: "Bellfort";
  src: url("./img/Fonts/Bellfort Draw Dark Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("./img/Fonts/Open Sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GoodTiming";
  src: url("./img/Fonts/good timing bd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}
.clear::after {
  content: "";
  clear: both;
  display: block;
}
.text-center {
  text-align: center;
  padding-bottom: 15%;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.left {
  float: left;
}
.right {
  float: right;
}
img {
  max-width: 100%;
}

body {
  margin: auto;
  background-color: #181818;
  padding-top: 80px;
}

.container {
  width: 90%;
  margin: auto;
}
body,
h1,
h2,
h3,
h4,
h6,
a,
img,
span,
div {
  font-family: "OpenSans";
}
/* header section */
.header-section {
  background-color: rgba(24, 24, 24, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header {
  position: relative;
}

.logo {
  margin-top: 10px;
  width: 50%;
}
.logo img {
  width: 15%;
  min-width: 100px;
}
.header-menu {
  width: 50%;
}
.header-menu ul {
  list-style: none;
  text-align: end;
}
.header-menu ul li {
  display: inline;
  padding: 1%;
}
.header-menu ul li a {
  display: inline-block;
  text-decoration: none;
  padding: 2% 1.5%;
  color: #fff;
  font-size: 1.125em;
  font-weight: 600;
  transition: 0.4s;
  text-transform: uppercase;
  font-family: "Bellfort";
  font-size: 1.3em;
}
.header-menu ul li a:hover {
  color: #16d379;
  text-shadow: 1px 1px 5px #16d379;
}
/* dropdown section */
.header-menu ul li {
  position: relative;
}
.header-menu ul li ul {
  width: 20%;
  min-width: 180px;
  background: #fff;
  top: 130%;
  left: -5%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.header-menu ul li ul li {
  display: block;
}
.header-menu ul li ul li:first-child {
  margin-top: 1%;
}
.header-menu ul li ul li a {
  display: block;
  background-color: #000;
}
.header-menu ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
.header-menu ul li ul li a:hover {
  background-color: #fff;
  color: #000;
}
/* banner section */
.banner-section {
  background-color: #181818;
}
.banner {
  margin: auto;
  background-image: url(./img//Main-Section/BckgrdTopLeft.png);
  background-position: left center;
  background-repeat: no-repeat;
  height: 80vh;
  text-align: center;
  display: flex;
  justify-content: center;
  filter: opacity(90%);
  background-size: contain;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0.9;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-characters {
  margin: auto;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-characters-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner h1 {
  font-family: "Bellfort";
  font-size: 2em;
  font-weight: bold;
  color: #f9fdfb;
  text-align: center;
  filter: contrast(5.5) blur(6px);
  transition: 0.4s;
}
.banner h1:hover {
  filter: none;
}
.banner img {
  width: 30%;
  min-width: 300px;
}
.banner h4 {
  font-size: 1.375em;
  margin: 2% 0;
}

.main-banner .container {
  text-align: center;
  position: relative;
  width: 75%;
}
.main-banner img {
  width: 100%;
  height: 100%;
}

.character {
  position: absolute;
  opacity: 0;
  height: 90%;
  width: auto;
  object-fit: contain;
}

.grid {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 10;
}

@keyframes fadeInOut {
  0%,
  15% {
    opacity: 0;
  }
  25%,
  45% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOutLeft {
  0%,
  15% {
    opacity: 0;
    transform: translateX(-20px);
  }
  25%,
  45% {
    opacity: 1;
    transform: translateX(0);
  }
  60%,
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@keyframes fadeInOutRight {
  0%,
  15% {
    opacity: 0;
    transform: translateX(20px);
  }
  25%,
  45% {
    opacity: 1;
    transform: translateX(0);
  }
  60%,
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.char1 {
  animation: fadeInOut 10s ease-in-out infinite;
}

.char2 {
  animation: fadeInOutRight 10s ease-in-out 0.5s infinite;
}

.char3 {
  animation: fadeInOutLeft 10s ease-in-out 1s infinite;
}

.char4 {
  animation: fadeInOutRight 10s ease-in-out 1.5s infinite;
}

.char5 {
  animation: fadeInOutLeft 10s ease-in-out 2s infinite;
}

.btn-div {
  position: relative;
  text-align: center;
  margin-top: -15%;
  z-index: 20;
}

.btn-1 {
  font-family: "GoodTiming";
  font-size: 1.8em;
  padding: 1% 4%;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  border: none;
  background: linear-gradient(180deg, #16d379, #0da05a);
  z-index: 1;
  transition: 0.4s;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-1::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(180deg, #0da05a, #16d379);
  border-radius: 50px;
  z-index: -1;
}

.btn-1::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: linear-gradient(180deg, #16d379, #0da05a);
  border-radius: 50px;
  z-index: -1;
}

.btn-1:hover {
  color: #16d379;
}

.btn-1:hover::after {
  background: black; /* Changes the inner background to black */
}

/* morphing section start */

.morphing {
  background-color: #181818;
}
.morphing .container {
  position: relative;
  color: #16d379;
  font-size: 5em;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bellfort";
  font-weight: 700;
  text-transform: uppercase;
  animation: word 15s infinite ease-in-out;
}
@keyframes word {
  0%,
  5%,
  100% {
    filter: blur(0px);
    opacity: 1;
  }
  20%,
  80% {
    filter: blur(1em);
    opacity: 0;
  }
}
.word:nth-child(1) {
  animation-delay: -15s;
}
.word:nth-child(2) {
  animation-delay: -12s;
}
.word:nth-child(3) {
  animation-delay: -9s;
}
.word:nth-child(4) {
  animation-delay: -6s;
}
.word:nth-child(5) {
  animation-delay: -3s;
}

/* morphing section end */

/* nft section start */
.nft-section {
  background-image: url(./img//NFT-Part/BackgroundOzyNFTpart.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-position: center;
  margin: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#nft-section > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
}

#nft-section .container {
  position: relative;
  z-index: 2;
}

.nft {
  width: 50%;
}
.nft h1 {
  font-family: "Bellfort";
  margin-top: 5%;
  color: #16d379;
  font-size: 4em;
  font-weight: 800;
  text-align: center;
  padding-bottom: 10%;
}
.nft ul {
  margin-left: 5%;
}
.nft ul li {
  text-align: left;
  color: #f9fdfb;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
}

.nft ul .bg-img {
  font-family: "Bellfort";
  background-image: url(./img//NFT-Part/LineSousTitre.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 2% 3%;
  font-size: 3em;
}

.button-div {
  width: 100%;
  margin: auto;
}
.button-div .btn-2 {
  font-family: "GoodTiming";
  background-color: #181818;
  color: #f9fdfb;
  padding: 10px 60px;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #16d379;
  border-radius: 50px;
  transition: 0.4s;
  text-decoration: none;
}
.button-div .btn-2:hover {
  background-color: #16d379;
  box-shadow: 1px 1px 15px #16d379;
}

/* contact-menu */
.contact-img-1 ul {
  list-style: none;
  margin-left: 62px;
}
.contact-img-1 ul li {
  display: inline-block;
}
.contact-img-1 ul li a {
  display: block;
  padding: 5px;
}
.contact-img-1 ul li a i {
  font-size: 30px;
  color: #fff;
  transition: 0.4s;
}
.contact-img-1 ul li a:hover i {
  color: #51687c;
}
/* get in touch */
.get-in-touch {
  background-color: #181818;
  width: 100%;
  position: relative;
  background-image: url("./img//OG-Part/TransitionCadrillageBckgrd.png"),
    url("./img//OG-Part/EyesBcgrd.png"), url("./img//OG-Part/EyesBcgrd2.png");
  background-size: 50% 50%, 20%, 20%;
  background-position: top right, center left, bottom right;
  background-repeat: no-repeat;
}

.get-in-touch img {
  margin-bottom: -6.5%;
  width: 20%;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 1920px) and (max-width: 2720px) {
  .get-in-touch img {
    margin-bottom: -7.5%;
  }
  .banner {
    background-size: auto;
  }
}

@media only screen and (min-width: 1500px) and (max-width: 1920px) {
  .get-in-touch img {
    margin-bottom: -8.5%;
  }
}
@media only screen and (min-width: 1270px) and (max-width: 1500px) {
  .get-in-touch img {
    margin-bottom: -9.5%;
  }
  .nft ul .bg-img {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1270px) {
  .get-in-touch img {
    margin-bottom: -12.5%;
    width: 30%;
  }
  .nft ul .bg-img {
    font-size: 2.5em;
  }
}

.box {
  padding: 8%;
  width: 70%;
  margin: auto;
  font-size: 20px;
}
.box h1 {
  font-family: "Bellfort";
  font-size: 2em;
  font-weight: bold;
  color: #f9fdfb;
  text-align: center;
  filter: contrast(5.5) blur(6px);
  transition: 0.4s;
  margin-bottom: 5%;
}
.box h1:hover {
  filter: none;
}
.box p {
  color: #fffc;
  line-height: 2;
  margin: 2% 0;
}

h1.green-title {
  font-family: "Bellfort";
  font-size: 8em;
  font-weight: 800;
  color: #16d379;
  text-align: center;
  filter: none;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* footer */
.footer {
  background-color: #181818;
  width: 100%;
}
.footer-img {
  width: 50%;
}
.footer-text {
  width: 48%;
  text-align: right;
  margin-top: 20%;
  margin-right: 2%;
}
/*.footer-text img {
  /cursor: pointer;
}*/
.logo-part {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
}

.img-logo {
  display: inline-block;
  width: 8%;
  min-width: 40px;
  margin-right: 2%;
}
.logo-1 {
  width: 5%;
  min-width: 30px;
  display: inline-block;
  margin-right: 2%;
}
.logo-2 {
  width: 25%;
  min-width: 150px;
  display: inline-block;
  margin-right: 2%;
}
.footer .copyright {
  color: #c2c2c2;
  font-size: 1.25em;
  display: inline-block;
}

.footer-menu li {
  color: #c2c2c2;
  font-size: 1em;
  text-transform: uppercase;
  display: inline;
  text-decoration: underline;
  font-style: italic;
  cursor: pointer;
}

.footer-menu li a {
  display: inline-block;
  text-decoration: none;
  padding: 2% 3%;
  color: #fff;
  font-size: 1.125em;
  font-weight: 600;
  transition: 0.4s;
  text-transform: uppercase;
}

.footer-menu li a:hover {
  color: #16d379;
  text-shadow: 1px 1px 5px #16d379;
}

/* Responsive Design */

/* Suppression du padding-top sur mobile */
@media only screen and (max-width: 575px) {
  #nft-section .container {
    padding-top: 0 !important;
  }
}

/* Grand desktop (>1200px) */
@media only screen and (min-width: 1201px) {
  .container {
    width: 80%;
    max-width: 1400px;
  }

  .banner {
    height: 90vh;
  }

  .banner h1 {
    font-size: 2.5em;
  }

  .morphing .container {
    font-size: 6em;
    min-height: 45vh;
  }

  .nft h1 {
    font-size: 4.5em;
  }

  h1.green-title {
    font-size: 8em !important;
  }

  .nft-section {
    min-height: 100vh;
  }
}

/* Petit desktop (992px - 1200px) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .container {
    width: 85%;
  }

  .banner {
    height: 85vh;
  }

  .banner img {
    width: 35%;
  }

  .morphing .container {
    font-size: 5em;
    min-height: 40vh;
  }

  .nft h1 {
    font-size: 3.5em;
  }

  .box {
    width: 85%;
    padding: 6%;
  }

  h1.green-title {
    font-size: 8em !important;
  }

  .nft-section {
    min-height: 100vh;
  }
  .nft ul .bg-img {
    font-size: 2.5em;
  }
}

/* Tablette paysage (768px - 992px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 90%;
  }

  .banner {
    height: 70vh;
    background-size: contain;
  }

  .banner img {
    width: 35%;
    min-width: 250px;
  }

  .banner h1 {
    font-size: 1.8em;
  }

  .header-menu ul li a {
    padding: 2% 2%;
    font-size: 0.9em;
  }

  .morphing .container {
    font-size: 3.5em;
    min-height: 35vh;
  }

  .nft-section {
    min-height: 100vh;
  }

  .nft h1 {
    font-size: 2.8em;
  }

  .nft ul li {
    font-size: 1.2em;
  }

  .box {
    width: 90%;
    padding: 5%;
  }

  h1.green-title {
    font-size: 5em !important;
  }

  .footer-text {
    margin-top: 15%;
  }

  .get-in-touch img {
    margin-bottom: -11.5%;
    width: 30%;
  }
  .nft ul .bg-img {
    font-size: 2em;
  }
}

/* Tablette portrait (576px - 768px) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    width: 95%;
  }

  .logo img {
    width: 20%;
    min-width: 120px;
  }

  .banner {
    height: 60vh;
    background-size: contain;
  }

  .banner img {
    width: 45%;
    min-width: 200px;
  }

  .banner h1 {
    font-size: 1.5em;
  }

  .header-menu ul li a {
    padding: 2% 1.5%;
    font-size: 0.8em;
  }

  .btn-div {
    margin-top: -12%;
  }

  .btn-1 {
    font-size: 1.2em;
  }

  .morphing .container {
    font-size: 2.5em;
    min-height: 15vh;
  }

  #morphing_effect {
    font-size: 8px;
  }

  .nft-section {
    min-height: 100vh;
  }

  .nft h1 {
    font-size: 2.2em;
    margin-top: 3%;
  }

  .nft ul li {
    font-size: 1em;
  }

  .box {
    width: 90%;
    padding: 4%;
  }

  .box h1 {
    font-size: 1.8em;
  }

  h1.green-title {
    font-size: 4em !important;
  }

  .footer-text {
    margin-top: 12%;
  }
  .get-in-touch img {
    margin-bottom: -11.5%;
    width: 30%;
  }
  .nft ul .bg-img {
    font-size: 1.5em;
  }
}

/* Mobile (<576px) */
@media only screen and (min-width: 400px) and (max-width: 575px) {
  .container {
    width: 100%;
    padding: 0 2%;
  }

  .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
  }

  .logo img {
    width: 30%;
    min-width: 100px;
  }

  .header-menu {
    width: 100%;
  }

  .header-menu ul {
    text-align: center;
  }

  .header-menu ul li a {
    padding: 1.5% 1%;
    font-size: 0.7em;
  }

  .banner {
    height: 40vh;
    background-size: contain;
  }

  .banner img {
    width: 50%;
    min-width: 150px;
  }

  .banner h1 {
    font-size: 1.2em;
  }

  .btn-div {
    margin-top: -15%;
  }

  .btn-1 {
    font-size: 1em;
    padding: 2% 5%;
  }

  .morphing .container {
    font-size: 1.8em;
    min-height: 15vh;
  }

  #morphing_effect {
    font-size: 6px;
  }

  .nft-section {
    min-height: auto;
  }

  .nft {
    width: 90%;
    margin: auto;
    float: none;
  }

  .nft h1 {
    font-size: 1.8em;
    margin-top: 2%;
  }

  .nft ul {
    margin-left: 25%;
  }

  .nft ul li {
    font-size: 0.9em;
    text-align: center;
  }

  .box {
    width: 85%;
    padding: 3%;
  }

  .box h1 {
    font-size: 1.2em;
  }

  .box p {
    font-size: 0.85em;
  }

  h1.green-title {
    font-size: 4em !important;
  }

  .footer-img,
  .footer-text {
    width: 100%;
    text-align: center;
  }

  .logo-part {
    justify-content: center;
  }

  .footer-text {
    margin-top: 5%;
  }
  .get-in-touch img {
    margin-bottom: -15.5%;
    width: 40%;
  }
  .nft ul .bg-img {
    font-size: 1.5em;
    text-align: initial;
  }
}

@media only screen and (max-width: 575px) {
  #nft-section .container {
    padding-top: 0 !important;
  }
}

@media only screen and (max-width: 400px) {
  .container {
    width: 100%;
    padding: 0 2%;
  }

  .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
  }

  .logo img {
    width: 30%;
    min-width: 100px;
  }

  .header-menu {
    width: 100%;
  }

  .header-menu ul {
    text-align: center;
  }

  .header-menu ul li a {
    padding: 1.5% 1%;
    font-size: 0.7em;
  }

  .banner {
    height: 35vh;
    background-size: contain;
  }

  .banner img {
    width: 50%;
    min-width: 150px;
  }

  .banner h1 {
    font-size: 1.2em;
  }

  .btn-div {
    margin-top: -15%;
  }

  .btn-1 {
    font-size: 1em;
    padding: 2% 5%;
  }

  .morphing .container {
    font-size: 1.8em;
    min-height: 25vh;
  }

  #morphing_effect {
    font-size: 6px;
  }

  .nft-section {
    min-height: auto;
  }

  .nft {
    width: 90%;
    margin: auto;
    float: none;
  }

  .nft h1 {
    font-size: 1.8em;
    margin-top: 2%;
  }

  .nft ul {
    margin-left: 15%;
  }

  .nft ul li {
    font-size: 0.9em;
    text-align: center;
  }

  .box {
    width: 85%;
    padding: 3%;
  }

  .box h1 {
    font-size: 1.2em;
  }

  .box p {
    font-size: 0.85em;
  }
  h1.green-title {
    font-size: 4em !important;
  }

  .footer-img,
  .footer-text {
    width: 100%;
    text-align: center;
  }

  .logo-part {
    justify-content: center;
  }

  .footer-text {
    margin-top: 5%;
  }
  .get-in-touch img {
    margin-bottom: -17.5%;
    width: 40%;
  }
  .nft ul .bg-img {
    font-size: 1.5em;
    text-align: initial;
  }
  .button-div {
    width: 80%;
    margin: auto;
  }
  .button-div .btn-2 {
    padding: 5px 30px;
    font-size: 24px;
  }
}

/* Burger Menu Button */
.burger-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

/* Mobile Menu Styles */
@media only screen and (max-width: 768px) {
  .burger-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #181818;
    padding: 80px 20px;
    transition: 0.4s;
    z-index: 99;
  }

  .header-menu.active {
    right: 0;
  }

  .header-menu ul {
    text-align: left;
  }

  .header-menu ul li {
    display: block;
    margin: 20px 0;
  }

  .header-menu ul li a {
    font-size: 1.2em;
    padding: 10px 0;
  }

  /* Animation du burger */
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Overlay sombre quand le menu est ouvert */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }

  .menu-overlay.active {
    display: block;
  }

  #nft-section > img {
    width: 150%; /* Zoom sur mobile */
    left: 50%;
    transform: translateX(-50%);
  }

  .footer {
    display: flex;
    flex-direction: column-reverse;
  }

  .footer-img,
  .footer-text {
    float: none;
    width: 100%;
  }

  .get-in-touch {
    background-image: url("./img//OG-Part/TransitionCadrillageBckgrd.png");
    background-size: 50% 50%;
    background-position: top right;
  }
}

/* Popup styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 24, 24, 0.8); /* Match header background */
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  background-color: #181818; /* Match body background */
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #f9fdfb; /* Match text color */
  font-family: "OpenSans";
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #16d379; /* Match accent color */
  cursor: pointer;
  transition: color 0.4s;
}

.close:hover {
  color: #fff; /* Change color on hover */
}

.logo-1 a,
.img-logo a {
  display: inline-block;
  transition: transform 0.4s, box-shadow 0.4s;
}

.logo-1 a:hover,
.img-logo a:hover {
  transform: scale(1.1);
  /*box-shadow: 0 0 10px #16d379;*/
  filter: drop-shadow(0 0 10px #16d379);
}

.logo-1 a:active,
.img-logo a:active {
  transform: scale(0.9);
}

#morphing_effect {
  position: relative;
  filter: url(#threshold) blur(0.6px);
  color: #16d379;
  margin-top: 10%;
  margin-bottom: 10%;
}

#text1,
#text2 {
  position: absolute;
  width: 100%;
  display: inline-block;
  font-family: "Bellfort";
  font-size: 12em;
  text-align: center;
  user-select: none;
}
