/*
Note that this website is completly ripped from someone else, non of this was writen by me
*/

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centerbru {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-family: verdana;
  float: left;
  padding: 5px;
}

.other_center {
    display: flex;
    justify-content: center;
    color: white;
    font-family: verdana;
}

.centerrr, .centerr {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-family: verdana;
}

.centerr { width: 0%; }

.centerbruh {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: white;
  height: 100px;
}

@keyframes blinkingText {
    0%{     color: #000;}
    49%{    color: #000;}
    60%{    color: transparent;}
    75%{    color: transparent;}
    100%{   color: #000;}
}

p { text-align: center; }
.blinking { animation: blinkingText 2s infinite; }
form { font-size: 20px; }


/* Search Bar CSS*/
#search-bar {
    font-size: 50%;
    font-family: verdana;
  background-color: #0a0a0a;
  background-position: 10px 12px;
  width: 20%;
  padding: 4px 7px 4px 8px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#search-results {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-family: verdana;
  text-align:center;
}

#search-results li a {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000000;
  margin-top: -1px;
  background-color: #0A0A0A;
  padding: 3px;
  text-decoration: none;
  font-size: 16px;
  color: white;
  width: 45%;
  display: block;
}

#search-results li a:hover {
  background-color: black;
}

/* Nav bar stuff */
#nav { position: absolute; }
#nav > a > svg {
    display: flex;
    float: inline-start;
    width: 48px;
    height: 48px;
    color: grey;
}

.rainbow_center_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
    display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.icons {
    position:fixed;
    bottom:0;
  }
