body {
  background-color: black;
  text-align: center;
  color: white;
  font-family: "Open Sans", sans-serif;
}
#announceMents {
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 5px;
  padding: 8px;
}
#announceMents:hover {
  background-color: black;
  animation: colorRotate 2.5s linear 0s infinite;
  border-style: solid;
  border-color: white;
}
#BookmarkMaker {
  position: absolute;
}
#Con {
  padding: 5px;
  border-radius: 3px;
}
#Ver {
  padding: 5px;
  border-radius: 3px;
}

#content {
  text-align: center;
  background-color: rgb(14, 14, 14);
  color: white;
  width: 75vw;
  height: 600px;
  position: relative;
  top: 25px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  border-radius: 5px;
  border-style: solid;
  border-color: white;
}

.app {
  min-width: 100px;
  margin: 10px;
  background-color: rgb(59, 59, 59);
  padding: 10px;
  border-radius: 10px;
  color: white;
}
.app:hover {
  background-color: black;
  border-style: solid;
  border-color: white;
  animation: colorRotate 2.5s linear 0s infinite;
}
#nav {
  position: absolute;
  right: 0;
}

#settings {
  position: fixed;
  top: 50;
  right: 50;
  background-color: white;
  height: 350px;
  z-index: 9999999999;
}

.rainbow {
  animation: colorRotate 6s linear 0s infinite;
}

@keyframes colorRotate {
  from {
    color: #6666ff;
  }
  25% {
    color: #0099ff;
  }
  50% {
    color: #00ff00;
  }
  75% {
    color: #ff3399;
  }
  100% {
    color: #6666ff;
  }
}

.rainbow2 {
  animation: colorRotate2 6s linear 0s infinite;
}

@keyframes colorRotate2 {
  from {
    background-color: #6666ff;
  }
  25% {
    background-color: #0099ff;
  }
  50% {
    background-color: #00ff00;
  }
  75% {
    background-color: #ff3399;
  }
  100% {
    background-color: #6666ff;
  }
}
