
html {
  margin: 0px;
  padding: 0px;
  height: 100%;
}


/* Header */
h1 {
  font-size: 2em;
  width: 100%;
  height: 20%;
  padding-top: 10px;
  color: white;
}

h2 {
  font-size: 1.5em;
  color: white;
  padding-bottom: 20px;
}

a {
  margin-left: 6px;
  margin-right: 0px;
  margin-top: 0px;
  color: rgb(40, 255, 255);
}

/* Content */
body {
  color: white;
  background-color: #202020;
  height: 89%;
}

header, footer {
  background-color: #2a2a2a;
}

#content {
  height: 90%;
}

#content div {
  margin-top: 10px;
  margin-bottom: 30px;
  margin-left: 10px;
}

#content div h2 {
  padding-bottom: 0px;
}

#content a {
  margin-right: 6px;
  margin-left: 0px;
}

ul {
  margin-left: 20px;
  font-size: 1.2em;
  list-style: inside;
}

a:hover {
  cursor: pointer;
}

/* Footer */
footer {
  height: 10%;
}

footer a {
  font-size: 18px;
  margin-left: 2px;
  margin-right: 6px;
}

footer p {
  font-size: 18px;
  padding-bottom: 5px; 
}

/* Classes */

.cmiddle {   /* Centers content vertically */                                      
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rmiddle {  /* Centers content horizontally */                                         
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.outer {
  display: grid;
  grid-template: 2fr / 1fr;
  place-items: center;
}


/* Color Palette

#111111
#ffffff

/*

/* Below are various code snippets for future use as needed */


/* Google Fonts


*/


/* Full Screen Background Image

background-image:url(../images/);
background-position: center center;
background-repeat:  no-repeat;
background-attachment: fixed;
background-size:  cover;
background-color: var(--black);

*/


/* Individual Side Box Shadows

top {
  box-shadow: 0px -15px 10px -15px #111;
}

right {
  box-shadow: 15px 0px 10px -15px #111;
}

bottom {
  box-shadow: 0px 15px 10px -15px #111;
}

left {
  box-shadow: -15px 0px 10px -15px #111;
}

*/

/*  Fullscreen Video Background CSS

#video-background {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}

*/


/* Carousel/Slideshow CSS (Slider)

.container{
    width: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 10px 25px 30px rgba(0,0,0,0.3);
}
.wrapper{
    width: 100%;
    display: flex;
    animation: slide 16s infinite;
}
@keyframes slide{
    0%{transform: translateX(0);}
    25%{transform: translateX(0);}
    30%{transform: translateX(-100%);}
    50%{transform: translateX(-100%);}
    55%{transform: translateX(-200%);}
    75%{transform: translateX(-200%);}
    80%{transform: translateX(-300%);}
    100%{transform: translateX(-300%);}
}
.container img {
    width: 100%;
}

*/
