/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color."

body {
  background-color: white;
  color: black;
  font-family: Verdana;
} */

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #09f;
  color: #fff;
}

a {
  color: white;
  text-decoration: none;
}

a.secret:link {
  color: rgba(255,255,255,0)
}

a.secret:hover {
  color: rgba(255,255,255,1)
}

/* Style the header */
.header {
  background-color: #09f;
  color: #fff;
  padding: 30px;
  text-align: center;
  font-size: 35px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

.column {
  padding: 10px;
}

.column.one {
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

.column.two {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.column.three {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

/* Style the footer */
.footer {
  background-color: #09f;
  color: #fff;
  padding: 30px;
  text-align: center;
}

.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}