* {
  box-sizing: border-box;
}

body {
  background-color:  black;
  color:  white;
  font-size: 100%;
  font-family:"times new roman", times, serif;
}

h1 {
  font-size: 400%;
  word-break: break-all;
  text-align: left;
}

h2 {
  font-size: 200%;
  word-break: break-all;
}

h3 {
  font-size: 100%;
  word-break: break-all;
}

/* Center website */
.main {
  max-width: 90%;
  text-align: center;
  margin: auto;
}

/* Grid */
.wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
  justify-items: center;
  align-items: center;
}

/* Image */
img { */
  background-size: cover;
  max-width: 100%;
  max-height: 90%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
}
h1 {
  font-size: 300%;
  word-break: break-all;
  text-align: left;
}

}