/* Applies to the entire body of the HTML document (except where overridden by more specific
selectors). */

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


body {
  margin: 25px;
  background-color: rgb(240,240,240);
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
}


h1 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 25px;
}

img {
  background-color: white;
  padding: 12px;
  height: 40vw;
  border-radius: 6px;
}

.about {
  width: 50vw;
  font-style: italic;
  font-size: 1.2em;
  text-align: center;
}

.content {
  width: 50vw;
  font-style: italic;
  font-size: 1.2em;
  text-align: center;
}


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

.main div {
}

/*@media only screen and (max-width: 320px) {*/
@media only screen and (max-device-width: 480px){

  img {
    background-color: rgb(255, 255, 255);
    width: 80vw;
    height: auto;
    padding: 12px;
  }
.about {
  width: 70vw;
  font-style: italic;
  padding: 16px;
  font-size: 2.6em;
  text-align: center;
}

h1 {
  font-size: 44px;
  font-weight: 500;
  margin-top: 45px;
}
}
