* {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: static;
}

a {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
  text-decoration: none;
}

hr {
  width: 50%;
  border: solid lightgray 0.1rem;
}

.content {
  color: black;
  margin: 5rem 0rem 0rem 0rem;
  padding: 2rem 2rem 3rem 2rem;
  width: 100%;
  min-width: 20rem;
  max-width: 45rem;
  height: min-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media only screen and (max-width: 650px) {
  /* For mobile phones: */
  .content {
    /* background-color: gray; */
    margin: 6rem 0rem 0rem 0rem;
  }
}