.center {
  width: 100%;
  padding: 10px;
}

.center {
        display: block;
    }
    
    .center {
        border-color: red;
        animation-name: flash_border;
        animation-duration: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        -webkit-animation-name: flash_border;
        -webkit-animation-duration: 1.4s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-name: flash_border;
        -moz-animation-duration: 2s;
        -moz-animation-timing-function: linear;
        -moz-animation-iteration-count: infinite;
      }

h1 {
  padding-bottom: 8px;
  margin-bottom: 8px;
  margin-left: 20px;
  font-size: 46px;
  font-family: 'Verdana';
}

h2 {
  background:#030303;
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 0;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid red;
  border-left: 8px double #BA0000;
}

.big1 {
  font-size: 20px;
  font-weight: bold;
}

.big2 {
  font-size: 18px;
  font-weight: bold;
}

summary:hover {
  cursor: pointer;
}

ul {
  --gutter: .5em;
}

ul li {
  padding-left: var(--gutter);
}

ul li::marker {
  content: "\f720"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  font-size: var(--icon-size);
  --icon-size: 1.2em;
}

ul ul li::marker {
  content: "\f6c6"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  font-size: var(--icon-size);
  --icon-size: 1.1em;
}

ul ul ul li::marker {
  content: "\f54c"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  font-size: var(--icon-size);
  --icon-size: .9em;
}

li {
  margin: 5px 0;
  font-family: 'Verdana';
}

 .eye {
     left: 70%;
     bottom: -3%;
     z-index:2;
     padding: 9px;
     position: absolute;
     height: 150px;
     animation: float 3s ease-in-out infinite;
     filter: drop-shadow(0 0 15px black);

}

@keyframes float { 
0% { 
transform: translate(0,  0px) rotate(15deg) scaleX(-1); 
} 

50%  { 
transform: translate(0, 15px) rotate(15deg) scaleX(-1); 
} 

100%   {
transform: translate(0, -0px) rotate(15deg) scaleX(-1); 
} 
}