html,
body {
  scroll-behavior: smooth;
}

body {
  user-select: none;
  background-color: #e0ebe7;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin: 0;
}

nav {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  background-color: transparent;
  transition: top 0.3s, background-color 1s;
}

.navtext {
  padding: 7vh 2.5vw;
  color: #199c96;
  text-decoration: none;
  font-size: large;
}

.navtext:hover {
  transform: scale(1.02);
}

a:hover {
  color: #0d504a;
}

#page1 {
  padding-top: 180px;
}

.Imlr {
  color: #50af9a;
  font-family: "Dancing Script", cursive;
  font-size: 5em;
  text-align: center;
  letter-spacing: 0.1em;
}

.web {
  text-align: center;
  color: #50af9a;
  font-size: 3rem;
  padding-bottom: 7vh;
}

.lan {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.land {
  width: 80%;
  max-width: 100%;
  height: auto;
  background-position: top;
}

#page2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  justify-content: center;
}

#page2 > h2,
#page2 > h1 {
  text-align: center;
  color: #50af9a;
  font-size: 3em;
  font-family: "Raleway", sans-serif;
  transition: font-size 0.3s;
}

#page2 > p {
  text-align: center;
  color: rgba(0, 0, 0, 0.699);
  font-size: 1.4em;
  font-family: "EB Garamond", serif;
  margin-top: 0;
  transition: font-size 0.3s;
}

.texttypo > h2 {
  color: #50af9a;
  font-size: 3rem;
  font-family: "Raleway", sans-serif;
}

.texttypo > p {
  color: rgba(36, 103, 88, 0.652);
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

footer {
  color: #50af9a;
  text-align: center;
}

.links {
  display: flex;
  justify-content: center;
}

.links > a {
  color: #50af9a;
  padding: 5vh 3vw;
}

.links > a:hover {
  color: #147974;
  transform: scale(1.025);
  transition: transform 0.3s ease;
}

.last {
  padding-bottom: 4vh;
}

.line {
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  border-style: dotted none none;
  border-width: 6px;
  border-color: rgb(194, 230, 222);
}

#btc {
  float: right;
}

#btc img {
  height: 10%;
  width: auto;
}

.section {
  background-color: #e0ebe7;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  width: 76%;
  margin: 10rem auto 0 auto;
  border-radius: 5px;
}

.section img {
  height: 300px;
  border-radius: 5px;
}

.section h1 {
  color: #50af9a;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section p {
  color: #50af9a;
  font-size: 20px;
  font-family: "CARTOON FREE", sans-serif;
}

.titleDesign {
  color: #eb7908;
  font-weight: bold;
}

.typo2 {
  text-align: center;
}

.logo {
  height: 80px;
  width: 80px;
  border-radius: 0.6rem;
  border: solid 3px #50af9a;
  padding: 0.5%;
  margin-left: 70px;
  margin-right: 70px;
}

.container {
  display: flex;
  /* flex-direction: row; */
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-content: space-around;
  gap: 2em;
  padding: 20px;
}
//////////////////////////////////////////
.image-container {
  position: relative;
  display: inline-block;
}

.logo {
  transition: transform 0.3s ease;
}

.image-container:hover .logo {
  transform: scale(1.05); /* Image grows slightly on hover */
}

.popup {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-size: 14px;
}

.image-container:hover .popup {
  opacity: 1;
  visibility: visible;
}
