body {
  background-color: #262e4c;
  color: #e9ccd3;
  font-family: Verdana;
}
/*Here are all your text colours (so far)*/
h1 {
  color: #b199db;
  text-align: center;
}
h2 {
  color: #b199db;
  text-align: center;
}
p {
  color: #e9ccd3;
  text-align: center;
  margin: 50px;
  padding: 50px;
  background-color: #414e7f;
  display: flex;
  }
br {
  color: #e9ccd3;
  text-align: center;
  margin: 50px;
  padding: 50px;
  background-color: #414e7f;
  display: flex;
}
  /*I think I might utilize this for a navbar*/
ul {
  color: #e9ccd3;
  text-align: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  display: flex;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}
  /*Here are all the link colours*/
a:link {
  color: #fea775;
}
a:visited {
  color: #d46059;
}
a:hover {
  color: #aa405b;
}
a:active {
  color: #802b5b;
}
/*Now we get into the sketchy territory where I don't know what this is or what I'm doing
header {
    background-color: white;
    text-align: center;
    padding: 25px;
    box-sizing: border-box;
    border-color: black;
    border-style: double;
    border-width: 2px;
}
.navbar{
    background-color: grey;
    height: 50px;
}
aside{
    width: 20%;
    float: left;
    padding: 10px;
}
section{
    width: 40%;
    float: left;
    padding: 10px;
}
article{
    width: 40%;
    float: left;
    padding: 10px;
}
footer{
    display: block;
    clear: both;
    background-color: white;
    text-align: center;
    padding: 25px;
}
@media screen and (max-width:600px){
    aside, section, article{
        width: 100%;
    }*/