@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Questrial&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page {
  display: flex;
  flex-wrap: wrap;
}

h1 {
  font-family: 'Amatic SC', cursive;
}

p {
  background-color: rgba(102, 102, 102, 30%); /* Grey */
}

body {
  background-color: rgb(102, 102, 102); /* Grey */
  font-family: 'Questrial', sans-serif;
  color: white;
}

picture {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: -1;
}
/* Mobile Styles */
@media only screen and (max-width: 425px) {
  body {
  }
  content {
    position: absolute;
    width: 90%;
    height: auto;
    margin: 10px 10px;
  }
  picture {
    max-width: 50%;
    height: auto;
  }
}

/* Tablet Styles */
@media only screen and (min-width: 426px) and (max-width: 960px) {
  body {
    display: flex;
    justify-content: space-around;
  }
  content {
    text-align: center;
    position: absolute;
    top:33%;
    max-width: 50%;
    max-height: 50%;
    min-width: 300px;
  }
  picture {
    max-width: 70%;
    height: auto;
  }
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
  .page {
  }
  body {
    display: flex;
    justify-content: space-around;
  }
  content {
    position: absolute;
    top:33%;
    max-width: 50%;
    max-height: 50%;
    min-width: 300px;
  }
  picture {
    max-width: 100%;
    height: auto;
  }
}
