body {
  font-family: "Comfortaa", cursive;

  background-color: #1305aa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 2 1'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%231305aa'/%3E%3Cstop offset='1' stop-color='%231cacff'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='1' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='2' y2='2' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='2' height='1'/%3E%3Cg fill-opacity='0.2'%3E%3Cpolygon fill='url(%23b)' points='0 1 0 0 2 0'/%3E%3Cpolygon fill='url(%23c)' points='2 1 2 0 0 0'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  text-align: center;
  color: #82ff80;
}

h2 {
  color: #82ff80;
}

p {
  color: white;
}

.navbar {
  float: center;
  text-align: center;
}

.navbar a {
  display: inline-block;
  margin: 20px;
  padding: 10px 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;

  border-radius: 10px;
  background: lightskyblue;
  color: black;
  transition: 200ms ease;
}

.navbar a:hover {
  color: white;
  transform: scale(0.9);
}

ul,
ul li {
  color: white;
  margin: 15px 0;
}

.content {
  width: 35%;
  display: inline-block;
  vertical-align: top;
}

.content img {
  margin: 20px;
  border: 4px solid gold;
  border-radius: 20px;
}

article {
  max-width: 800px;
  margin: auto;
}