.img-container {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Text Based CSS*/

 .quote {
    color:#BF40BF;
    text-align: center;
    outline: black;
    border: 2px solid powderblue;
    font-size: 55px;
  }

  h2 {
    color: #FFAC1C;
    padding: 30px;
    text-align: center;
    font-weight: bolder;
    font-size: 30px;
  }

  h3 {
    color: #FFAC1C;
    text-align: center;
    font-weight: bold;
    font-size: large;
    font-size: 25px;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
 }

  p {
    color: #800080;
    font-size: 15pt;
    text-indent: 30px; 
  }
  
  center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .quote {
    color:#967bb6;
    text-align: center;
    outline: black;
    border: 2px solid powderblue;
    font-size: 55px;
    font-family: "Caveat", sans-serif;
  }

  .explicit {
    font-weight: bold;
    color: red;
  }

  .copyright {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: gray
  }

/* Image based CSS*/
.row {
  display: flex;
}

.column {
  flex: 50%;
}

body {
  background-image: url("images/blue sky pink tipple cloud.png");
  background-color: rgba(255, 255, 255, 0.7);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* Overall Site */
.container {
  max-width: 960px; 
  margin: 0 auto;
  padding: 20px;
}

body {
  margin: 0;
}

/* Dropdown/Side Navigation Menu */
/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #BF40BF;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #9ADFF4;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: #FFAC1C;
  color: black;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
  font-weight: bolder;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}