.navbar {
  display: flex;
  justify-content: center;
  border-style: medium;
  border-color: black;
}

ul {
  flex: 1;
  list-style-type: none;
  background-color: #FA1574;
  }

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

ul li a:hover {
  background-color: #f9297f;
}

body{
  background-color: #C9A1CA;
}

.container{
  display: flex;
}

.main{
  border: dashed;
  background-color: white;
  padding: 10px;
  height: 100%;
  width: 75%;
  justify-content: center;
  align-items: center;
}

  .readingstuff{ 
    display: flex;
    flex-basis: 50%;
    flex-direction: row;
    background-color: white;
    order: 2;
    margin: 20px;
    justify-content: center;
    align-items: center;
  }

    .reading{
      width: 20%;
      padding: 10px;
    }

    .topfive{ 
      width: 80%;
      padding: 10px;
    }

  .links{
    order: 1;
    display: inline-block;
    flex: 1 0 200px;
    background-color: white;
    margin: 20px;
    padding: 20px;
    width: 25%;
  }