html {
    min-height:100vh;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #ffffff;
  background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #ffffff 4px ), repeating-linear-gradient( #ebebeb55, #ebebeb );
}

.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 50vh;
  margin: 50px;
  color: white;
}

.overlay {  
  position: absolute;
  inset: 0;
  background: #008596;
  background: linear-gradient(90deg,rgba(0, 155, 176, 1) 0%, rgba(0, 184, 208, 0.4) 48%, rgba(0, 184, 208, 0.15) 100%);
  display: flex;
  border-radius: inherit;
  overflow: hidden;

}

.content {
  padding: 3rem;
}

.content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 1rem 0;
}

.buttons a {
  margin-right: 1.5rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
}

.stats {
  display: flex;
  gap: 9rem;
  color: white;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  
  position: absolute;
  bottom: 20px;
  right: 20px;

  background-color: black;
  border-radius: 15px;
  background: rgba(31, 31, 31, 0.455);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-style: italic;
  font-size: small;
}

.hero-label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-weight: semi-bold;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.icon {
  width: 40px;
  height: 40px;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: #333;
}

.text-lg2 {
  font-size: 25px;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 5px;
}

.text-lg3 {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b6b;
  margin-bottom: 1.5rem;
}

.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: black;
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: black;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #008799;
}

.button:hover .button__icon-wrapper {
  color: #008799;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
