@font-face {
  font-family: "Argentum Sans";
  src: url("/font/ArgentumSans-Black.woff2") format("woff2"),
    url("/font/ArgentumSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Argentum Sans";
  src: url("/font/ArgentumSans-Regular.woff2") format("woff2"),
    url("/font/ArgentumSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: Arial, sans-serif;
  /* background-color: #231f20; */
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: radial-gradient(circle, #ffd70033 1%, transparent 8%),
    radial-gradient(circle at bottom left, #ffd70033 2%, transparent 2%),
    radial-gradient(circle at bottom right, #ffd70033 2%, transparent 2%),
    radial-gradient(circle at top left, #ffd70033 2%, transparent 2%),
    radial-gradient(circle at top right, #ffd70033 2%, transparent 2%);
  background-size: 2em 2em;
  background-color: #231f20;
  opacity: 1;
}

.container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

h1,
h2 {
  font-size: 65px;
  margin-bottom: 30px;
  font-family: "Argentum Sans";
  background-image: linear-gradient(270deg, #037434, gold, #037434);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 6s linear infinite;
}

@keyframes gradient {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

h2 {
  font-size: 45px;
  margin-top: 7rem;
}

p {
  font-size: 20px;
  color: #efefef;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: "Argentum Sans";
}
p.email-text {
  font-size: 15px;
}

.email-wrapper {
  display: inline-flex;
  align-items: center;
  /* border: 1px solid #ccc; */
  border-radius: 5px;
  overflow: hidden;
  width: 55%;
  background: #282828;
}

input[type="email"] {
  font-size: 16px;
  padding: 10px;
  border: none;
  outline: none;
  flex-grow: 1;
  background: #282828;
  font-family: "Argentum Sans";
  height: 40px;
  color: #6a6969;
}

button {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #037434;
  color: #efefef;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 10px;
  border-radius: 5px;
  font-family: "Argentum Sans";
}

button:hover {
  background-color: #efefef;
  color: #037434;
}


@media (max-width: 768px) {
    body {
        height: auto;
    }
    h1, h2 {
    font-size: 30px;
    }
    p {
    font-size: 15px;
    }
    .email-wrapper {
        width: 100%;
    }
}