:root {
  --red: #D0485E;
  --gold: #EBAE53;
  --blue1: #08798B;
  --blue2: #32638C;
  --blue3: #043D5A;
}

html, body {
  height: 98%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.flexer {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.header {
  background-color: #e6e6e6;
  text-align: center;
  padding: 2%;
}

.bigRow {
  display: flex;
  height: 100%;
  flex-direction: column;
  flex-grow: 2;
}

.row {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-evenly;
}

.column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 60px;
  padding: 10px;
  text-align: center;
  color: white;
  transition: box-shadow;
}

.column:hover {
  box-shadow: 0px 0px 20px 0px grey;
}

.footer {
  text-align: center;
  width: 100%;
  padding: 10px;
  margin-top: 80px;
}

a {
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
}

h2 {
  font-size: 50px;
  color: #37474F;
}

@media (max-width:600px) {
  .row {
    /* flex-direction: column; */
    justify-content: space-around;
  }
}
