.row {
  width: 1024px;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
}

h1,
h2 {
  font-weight: bold;
  color: #000000;
  font-family: "Oswald", "Open Sans Light", sans-serif;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

#content a.landingLinks {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: all 0.1s;
  margin: 10px 0;
  box-shadow: 5px 5px 10px #c0c0c0;
  background-color: #f15a2a;
  color: #ffffff;
  padding: 20px 40px;
  min-height: 100px;
}
#content a.landingLinks:hover {
  background-color: #da3f0e;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
}
#content a.landingLinks:active {
  background-color: #f15a2a;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
}
#content a.landingLinks .smaller {
  font-size: 0.7em;
}
#content a.landingLinks-small {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: all 0.1s;
  margin: 10px 0;
  box-shadow: 5px 5px 10px #c0c0c0;
  background-color: #ffffff;
  color: #f15a2a;
  border: 1px solid #f15a2a;
  padding: 20px 10px;
}
#content a.landingLinks-small:hover {
  background-color: #da3f0e;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
}
#content a.landingLinks-small:active {
  background-color: #f15a2a;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
}
#content a.landingLinks-small:hover {
  background-color: #ffffff;
  color: #da3f0e;
}