* {
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  margin: 0;
  border: 0;
  padding: 0;
  background-color: #000000;
  color: white;
}

main {
  display: flex;
  flex: 1;
  padding: 20px;
  flex-direction: column;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 75%;
  justify-content: center;
  align-items: center;
  margin: auto;
}

h1 {
  font-size: 2.5em;
  padding-left: 20px;
}

.symbol-button {
  background-color: transparent;
  outline-color: transparent;
  border: none;
  outline: none;
  line-height: 0px;
}

.svg-image {
  max-width: 100%;
  min-width: 200px;
  height: auto;
}

.link-image {
  max-height: 50px;
  max-width: auto;
  padding-right: 20px;
  background-color: transparent;
}

.link-image:hover {
  -webkit-filter: invert(76%) sepia(33%) saturate(4788%) hue-rotate(280deg) brightness(116%) contrast(100%);
  filter: invert(76%) sepia(33%) saturate(4788%) hue-rotate(280deg) brightness(116%) contrast(100%);
}

p {
  margin: 0;
  font-size: 1.25em;
}

h2 {
  margin: 0;
  font-size: 2em;
  padding-bottom: 10px;
}

h3 {
  margin: 0;
  font-size: 1.75em;
  padding-bottom: 10px;
}

.vflex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 75%;
  margin: auto;
}


.hflex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  align-items: center;
  flex-wrap: wrap;

}

.hflex2 {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  justify-items: space-between;
  align-items: center;
}

.headerflex {
  margin: auto;
  display: flex;
  width: 80%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}

.grid-2 {
  padding-bottom: 2em;
  display: flex;
  direction: row;
  justify-content: center;
  align-items: center;
  /* gap: 20px; */
}

footer {
  text-align: center;
}

.button-text {
  color: white;
  background-color: transparent;
  min-width: 70px;
  height: auto;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 1.5em;
  border-radius: 4px;
  border-color: white;
  line-height: 0px;
  border-style: solid;
}

.button-text:hover {
  color: #E44CC9;
  padding: 15px 20px;
  border-color: #E44CC9;

}

.description {
  padding-bottom: 20px;
}

@media only screen and (max-width: 700px) {
  h1 {
    font-size: 2.5em;
    text-align: center;
  }

  .headerflex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
    flex-wrap: wrap;
  }

  .hide {
    visibility: hidden;
    height: 0px;
  }

  .svg-image {
    max-width: 50px;
    height: auto;
  }

  h3 {
    margin: 0;
    font-size: 1.25em;
    padding-bottom: 10px;
  }

  h2 {
    margin: 0;
    font-size: 1.5em;
    padding-bottom: 10px;
  }

  .button-text {
    font-size: 12px;
    height: auto;
    word-wrap: break-word;
  }

  .vflex {
    max-width: 100vw;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    justify-self: center;
  }

  .hflex {
    flex-wrap: wrap;
  }

  .grid-2 {
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    justify-self: center;
  }


  p {
    margin: 0;
    font-size: 1em;
  }
}


@media screen and (min-width: 701px) and (max-width: 1200px) {
  .svg-image {
    min-width: 50px;
    height: auto;
  }

  h3 {
    margin: 0;
    font-size: 1em;
    padding-bottom: 10px;
  }

  h2 {
    margin: 0;
    font-size: 1.5em;
    padding-bottom: 10px;
  }

  .button-text {
    font-size: 14px;
    height: auto;
  }

  .vflex {
    width: 75%;
    flex-wrap: wrap;
  }
}