@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Audiowide&family=Bungee&display=swap");
body {
  height: fit-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("imgs/background.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  font-size: 80%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Arimo", sans-serif;
}

.container {
  height: fit-content;
  background: linear-gradient(0deg, rgb(97, 31, 189), rgb(237, 218, 8));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 5.5rem;
  width: 33vw;
  border: solid 7.5px white;
  border-radius: 0.8rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  /* box-shadow: 2.5rem 0.5rem 8rem rgba(255, 255, 255, 0.75),
    -2.5rem -0.5rem 8rem rgba(255, 255, 255, 0.75); */
  box-shadow: 2.5rem 0.5rem 8rem rgba(237, 218, 8, 0.7),
    -2.5rem -0.5rem 8rem rgba(237, 218, 8, 0.7);
  transition: width 2.5s ease-in-out;
}

.logo-container {
  background-color: rgb(226, 96, 9);
  width: fit-content;
  padding: 3rem 4rem;
  border: dashed 7.5px #222;
  border-radius: 1.2rem;
  margin-bottom: 2.5rem;
}

h1 {
  font-family: "Bungee", sans-serif;
  font-size: 5rem;
  text-align: center;
  line-height: 97.5%;
  padding: 0 2rem;
  margin-bottom: 0.3rem;
  color: #000;
}

h4 {
  text-align: center;
  color: white;
  font-size: 1.3rem;
}

p {
  text-align: justify;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  color: #eee;
  padding: 0 1.75rem;
}

.word-and {
  color: white;
}

.text-container {
  background-color: #222;
  color: white;
  padding: 3rem 4rem;
  width: fit-content;
  border: dashed 7.5px rgb(226, 96, 9);
  border-radius: 1.2rem;
}

.email-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  font-family: "Bungee", sans-serif;
  text-align: center;
  font-size: 1.46rem;
  color: rgb(226, 96, 9);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  margin-top: -0.85rem;
}

h2 img {
  margin-left: 0.4rem;
}

a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Audiowide", sans-serif;
  font-size: 1.1rem;
  transition: all 1s;
}

a:hover {
  color: rgb(237, 218, 8);
  transform: scale(1.25);
}

@media screen and (max-width: 1500px) {
  .container {
    width: 45vw;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    width: 55vw;
  }
}

@media screen and (max-width: 1000px) {
  .container {
    width: 65vw;
  }
}

@media screen and (max-width: 800px) {
  .container {
    width: 70vw;
  }
}

@media screen and (max-width: 725px) {
  .container {
    width: 75vw;
    padding: 2rem;
  }

  .logo-container {
    padding: 2rem;
  }

  .text-container {
    padding: 2rem;
  }
}

@media screen and (max-width: 650px) {
  h1 {
    font-size: 3rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .container {
    width: 85vw;
  }
}
