html, body {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-family: "Comic Sans MS", Arial;
}
/*center image*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
/*Adds a header*/
header {
  font-family: Papyrus, "Comic Sans MS", Arial;
  background-color: #633;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  position: static;
  z-index: 4;
}
.frame-container iframe {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}
.wrapper {
   overflow: hidden;
   max-width: 50%;
}
/*Secret*/
.div1 {
  opacity: 0.0;
}
.div1:hover {
  opacity: 1.0;
}
/*Table*/
table, th, td{
  width: 100vh;
  border-style: solid;
  border-width: 2px;
  border-collapse: collapse;
}
/*Adds the free antivirus button*/
.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #4CAF50;
}
/*Video floating*/
.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
/*Mess*/
.color {
  animation: 200ms ease-in-out infinite color-change; 
}
.shake {
  animation: rotation 20ms infinite linear;
}
.spin {
  animation: rotate 1s infinite;
  animation-direction: alternate;
}
.blink {
  animation: 200ms linear infinite condemned_blink_effect;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes color-change {
  0% {
    background-color: red;
    color: blue;
  }
  50% {
    background-color: green;
    color: red;
  }
  100% {
    background-color: blue;
    color: chartreuse;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#dvd {
  mix-blend-mode: hue;
}

/*CODE I STOLE FROM THE INTERNET*/
.sidenav {
  height: 100%;
  width: 5%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  padding-top: 20px;
  margin-left: 2%;
}

.sidenav a {
  font-size: 25px;
  color: Magenta;
}

.sidenav a:hover {
  color: #000000;
}

/*Modal garbage*/
.modal {
  display: inline;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: yellow;
  margin: 15% auto;
  padding: 20px;
  border: 15px solid pink;
  width: 80%;
}

.close {
  color: green;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
