body {
  background-color: #89aae0;
}

.main {
  /**/
}

h1 {
    text-align: center;
}

.content {
  background-color: #ffffff;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid lightblue;
  border-radius: 25px;
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content > img {
    width: 50%;
}

.content > section {
    padding: 10px;
}

h5 {
  margin-bottom: 0;
}

p {
  margin-top: 0;
}

a:visited {
  color: black;
}

a:active {
  color: red;
}

.copyright {
  position: fixed;
  bottom: 0;
  font-size: 15px;
}

@media screen and (min-width: 390px) {
  .content {
    top: 50%;
    width: 370px;
  }
}