body {
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  height: 100%;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    #1e0074 3.65%,
    #9700dd 22.92%,
    #c51bf9 43.82%,
    #ff6caa 69.27%,
    #e24b64 100%
  );
}

.newsheader {
  width: 80%;
  max-width: 1000px;
  margin-top: 50px;
}
.mapimg {
  width: 100%;
  height: 100%;
}

.wrapper {
  width: 80%;
  max-width: 1000px;
  margin: 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.column{
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


h2 {
  font-family: "Krona One", sans-serif;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bolder;
  text-align: left;
}

h3 {
  width: 100%;
  font-family: "Nunito Sans", sans-serif;
  border-top: 1px solid rgb(0, 0, 0);
  padding-top: 10px;
  margin: 0px;
  margin-bottom: 10px;

  text-align: left;
}

@media screen and (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 100%;
  }
}