* {
  box-sizing: border-box;
}

@font-face{
  font-family: "camaraderie";
  src: url("Camaraderie.otf");
}

/* Style the header*/
.header {
  padding: 10px;
  text-align: center;
  font-size: 30px;
  color: white;
  font-family: "Camaraderie";
  text-decoration:underline;
  margin-left: 0px;

  text-shadow: 1px 1px #000000;
	
}
/* Style the footer */
.footer {
  background-color: black;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-family: "Segoe UI";
  color: white;
  margin-left: 0px;
}

/* Alternate footer */
.specialFooter {
  background-color: black;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-family: "Segoe UI";
  color: white;
  margin-left: 0px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/*Main content of the page*/
.content {
  align-self: center;
  margin: 50px;
  padding: 30px;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.7);
  font-family: "Segoe UI";
  color: black;  
}

.content p{
  text-indent: 50px;
}

.references {
  align-self: center;
  margin: 50px;
  padding: 30px;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.7);
  font-family: "Segoe UI";
  color: black;
  text-align: center;
}

.imgDiv {
  text-align: center;
  vertical-align: middle;
  z-index: 0;
}

img{
  border-radius: 10px;
}

/*Give columns proper layout*/
.column {
	font-size: 20px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
  text-align: left;
}

/*Row is what contains the columns*/
.row {
  display: -webkit-flex;
  display: flex;
  margin-left: 0px;
}


/* Responsive layout - makes the columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
   }
}

body
{
	margin: 0;
	font-family: "Segoe UI";
  background-color: #510042;
  background-image: url("../images/wallpaper2.jpg");
  background-position: 20%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

hr
{
	margin-left: 0px;
  color: #000000;
	border-color: #000000;
	border-width: 2px;
	border-style: single;
  border-radius: 1px;
}


.wrapper{
  text-align: center;
}

.footerWrapper{
  width: 100%;
  position: absolute;
}

.button {
  border-radius: 10px;
  background-color: #230321;
  border: none;
  color: white;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
  margin: auto;
  font-family: "camaraderie";
  overflow: hidden;
  margin: 15px;
}

.button:hover {
  background-color: #c415b9;
}


.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  bottom: 0;
  right: -20px;
  transition: 0.25s;
}

.button:hover span {
  padding-right: 25px;

}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/* Style the side navigation */
.sidenav {
  height: 100%;
  width: 0px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #230321;
  /*#111 for the grey from before*/
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  font-family: "camaraderie";
}


/* Side navigation links */
.sidenav a {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
  font-size: 18px;
}

/* Change color on hover */
.sidenav a:hover {
  color: black;
  background-color:#c415b9;
  transition: 0.5s;
  border-radius: 50px;
  text-decoration: none;
}

.sidenav .closebtn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 28px;
  margin-left: 0px;
  padding-top: 5px;
  padding-left: 18px;
  height: 50px;
  width: 50px;
}

.navopen {
  height: 50px;
  width: 50px;
  text-align: center;
  position: fixed;
  text-shadow: 1px 1px black;
  top: 0;
  padding-top: 4px;
  padding-left: 5px;
  padding-right: 5px;
  color: white;
}

.navopen:hover {
  color: black;
  background-color:#c415b9;
  text-shadow: none;
  transition: 0.5s;
  border-radius: 50px;
}

.link {
  text-align: center;
  position: relative;
  text-shadow: none;
  top: 0;
  padding-top: 10px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 10px;
  margin: -15px;
  color: white;
  border-radius: 50px;

}

.link:hover {
  color: white;
  text-decoration: none;
  text-shadow: none;
  transition: 0.5s;
  border-radius: 50px;
}

.footButton{
  height: 50px;
  width: 50px;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding-top: 3px;
  padding-left: 5px;
  padding-right: 5px;
}

.footButton:hover{
  color: black;
  background-color:lightblue;
  transition: 0.5s;
  border-radius: 50px;
}

a {
  color: purple;
  text-decoration: none;
}

a:hover {
  color: red;
  text-decoration: underline;
  transition: 0.25s;
}