body {
  font-size: 25px;
  font-family: helvetica;
  font-weight: lighter;
  color: white;
  background-color: black;
  text-align: center;
  margin: 0;
}

header {
  background-color: #f1f1f1;
  text-align: center;
}

h1 {
  color: rgb(150, 100, 255);
  background-color: #222;
  font-family: helvetica;
  font-size: 60px;
  font-weight: lighter;
  border-bottom-width: 5px;
  border-bottom-color: rgb(150, 100, 255);
  border-bottom-style: solid;
  text-align: center;
  padding: 20px;
  margin-top: 0;
}

h2 {
  color: white;
  font-family: helvetica;
  font-size: 50px;
  font-weight: lighter;
  text-decoration: none;
  line-height: 0;
}

h3 {
  color: white;
  font-family: helvetica;
  font-size: 30px;
  font-weight: lighter;
}



img {
  border: 5px;
  border-color: rgb(150, 100, 255);
  border-style: solid;
}

img:hover {
  border-color: white;
}

* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 40%;
  text-align: left;
}
.column-left {
  float: left;
  width: 48%;
  margin-right: 40px;
  margin-top: 15px;
  text-align: right;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media screen and (max-width: 900px) {
  .column {
    width: 100%;
    text-align: center;
  }
  .column-left {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    text-align: center;
  }
}

.footer {
  text-align: center;
  border-top: 5px;
  border-color: rgb(150, 100, 255);
  border-top-style: solid;
}
a {
  color: rgb(150, 100, 255);
  text-decoration: underline;
}

a:link {
  color: rgb(150, 100, 255);
  text-decoration: none;
}

a:hover {
  color: white;
}
