* {
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
}

.buttons {
  width: 100%;
  margin-top: 100px;
}

.image-row {
  display: flex;
  justify-content: center;
  margin: 0;
}

.horizontal-row {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

a:link,
a:visited {
  display: inline-block;
  line-height: 60px;
  width: 150px;
  background-color: white;
  border: 2px solid #2991d6;
  color: #2991d6;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
}

a:hover {
  background-color: #2ea3f2;
  color: white;
}

