/* CSS files add styling rules to your content */

body {
  background-color: black;
}

h1 {
  color: #ffffff;
  font-family: Georgia, serif;
  text-align: center;
  font-size: 50px;
}

h2 {
  color: #ffffff;
  font-family: Georgia, serif;
  text-align: center;
  font-size: 20px;
  margin-botton: 40px;
}

h3 {
  color: #ffffff;
  font-family: Georgia, serif;
  font-size:25px;
  text-align: left;
  margin-left: 20px;
  
}

h4 {
    color: #ffffff;
    font-family: Georgia, serif;
    font-size:18px;
}

p {
  color: white;
  font-family: Georgia, serif;
  text-align: center;
}

img {
}

/*IMAGE GRID*/

* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0px;
}

.column img {
  margin-top: 0px;
  vertical-align: middle;
  horizontal-align: middle;
}

/*STORIES*/

.tellyoumore {
  position: relative;
  left: 1vw;
  font-family: Georgia, serif;
  font-size: 3vw;
}

.areyoudone {
  position: relative;
  right: 1vw;
  font-family: Georgia, serif;
  font-size: 3vw;
}

/* LINK COLORS*/
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

