/* style all contents inside of the body */
body {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-color: black;
  color: white;
  font-family: Verdana;
  line-height: 1.5;
}

/* center a div element completely */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* aligns content horizontally */
.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* p styling */
p {
  margin: auto;
  padding: 2%;
  border-radius: 10px;
  font-size: 1.15vw;
}

/* p styling for divs */
.p {
  background: rgba(0, 0, 0, 0.7);
  margin: auto;
  padding: 2%;
  position: relative;
  left: 7%;
  width: 70%;
  border-radius: 10px;
  font-size: 1.15vw;
}

/* h1 styling */
h1 {
  border-radius: 10px;
  border: white;
  background-color: white;
  color: black;
  
  text-align: center;
  font-size: 1.5vw;
  margin: 2% auto;
  padding: 2%;
}

/* h1 styling for the top of pages. */
.page-header {
  position: relative;
  left: 7%;
  width: 50%;
  margin: auto;
}

/* h2 styling */
h2 {
  text-align: center;
  color: black;
  width: 80%;
  font-size: 1.5vw;
  margin: auto;
  padding: 1% 6%;
}


/* img styling */
img {
  margin: auto;
}

/* <a> styling for links */
/* unvisited link */
a:link {
  color: #D9C3FF;
}

/* visited link */
a:visited {
  color: #C892FF;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: hotpink;
}




/* used for <p> styling, changing black text to white text */
.default-font {
  color: white;
}

white {
  color: white;
}

black {
  color: black;
}

invert {
  mix-blend-mode: difference;
}

/* button styling */
.navButton {
  background: rgba(255, 255, 255, 0.5);
  color: black;
  margin: 1%;
  border: 2px solid #ffffff;
  border-radius: 10px;
  text-align: center;
  font-size: 3em;
  transition-duration: 0.5s;
  cursor: pointer;
}

.navButton a {
  text-decoration: none;
  color: #000000;
}
.navButton:hover {
  background-color: #e3e3e3;
  background: rgba(255, 255, 255, 1);
}

/* side nav bar styling */
.sidenav {
  color: #000000;
  width: 11%;
  position: fixed;
  z-index: 1;
  top: 30%;
  left: 1%;
  overflow-x: hidden;
  padding: 1%;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6)
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 1.5vw;
  color: #000000;
  display: block;
  transition-duration: 0.5s;
}

.sidenav a:hover {
  background-color: #e3e3e3;
  background: rgba(255, 255, 255, 0.5);
}

.sidenav .active {
  background: #ffffff;
}

/* About webpage styling. */
container {
  width: 30%;
  margin: 1%;
  display: inline-grid;
}

#about-img {
  width: 96%;
  border: 4px double #ffffff;
  border-radius: 10px;
}

#about-p {
  width: auto;
}

#about-div {
  width: auto;
}



/* ===============================
	General Styles for All Devices
   ===============================
*/

/* ===============================
	Mobile Styles up to 600 pixels
   ===============================
*/

@media only screen and (max-width: 600px) {
}

/* ============================================
	Tablet and Desktop Devices: 601px or more 
   ============================================
*/

@media only screen and (min-width: 601px) {
}




