@import url("https://fonts.googleapis.com/css2?family=Coiny&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Staatliches&display=swap");
body {
  font-family: "Staatliches", cursive;
  word-spacing: 2rem;
  margin: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: none;
}

.header {
  word-spacing: 0.5rem;
  font-size: xx-large;
  width: 100vw;
}

.image {
  margin-top: 10rem;
  width: 48%;
  height: 50%;
}

.image > img {
  width: 90%;
  height: 90%;
}

.content {
  width: 50%;
  height: 100rem;
  margin-top: 10rem;
}

.heading {
  font-size: 5rem;
}

.data {
  font-family: "Montserrat", sans-serif;
  font-size: xx-large;
  word-spacing: 1rem;
}

button {
  font-family: "Montserrat", sans-serif;
  height: 4rem;
  width: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: large;
  color: white;
  background-color: black;
  border: none;
}

/* media queries  */

@media (max-width: 500px) {
  body {
    overflow-y: scroll;
  }
  .image {
    margin-left: 2rem;
    margin-top: 10rem;
    width: 100%;
    height: 100%;
  }
  .content {
    width: 100%;
    height: 100rem;
    margin-top: 2rem;
  }
  .heading {
    font-size: 4rem;
    word-spacing: 1rem;
  }

  .data {
    font-family: "Montserrat", sans-serif;
    font-size: xx-large;
    word-spacing: 0.5rem;
  }
}
