@charset "UTF-8";
body {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("https://wallpapercave.com/wp/wp15240950.webp");
  font-family: "Space Mono";
  color: rgb(218, 239, 255);
  text-align: center;
  background-position: center;
}

a {
  color: rgb(218, 239, 255);
}

a:hover {
  color: rgb(96, 207, 255);
}

hr {
  border: 1px solid rgb(218, 239, 255);
  box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
}

blockquote {
  padding: 0.1em 2em 0.1em 3em;
  position: relative;
  border-left: 2rem solid rgb(96, 207, 255);
  font-size: 1.5rem;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-style: italic;
  border-radius: 15px;
  box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
  background-color: rgb(218, 239, 255);
  color: black;
}

blockquote:before {
  content: "“";
  color: rgba(124, 124, 124, 0.5);
  font-size: 5em;
  position: absolute;
  left: 1rem;
  top: 0.4em;
  line-height: 0.1em;
}

blockquote:after {
  content: "”";
  color: rgba(124, 124, 124, 0.5);
  font-size: 5em;
  position: absolute;
  right: 2rem;
  top: 0.85em;
  line-height: 0.1em;
}

button {
  background-color: rgb(218, 239, 255);
  color: black;
  border-radius: 15px;
  box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
  border: white;
}

table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
  color: black;
  box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
}

table, th, td {
  border: 1px solid;
}

tbody tr:nth-child(odd) {
  background-color: rgb(218, 239, 255);
}

tbody tr:nth-child(even) {
  background-color: rgb(96, 207, 255);
}

th {
  background-color: rgb(96, 207, 255);
}

img {
  border-radius: 15px;
}

.proxima {
  box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
}

div {
  border: none;
}

.star {
  width: 100px;
  height: 100px;
  animation: spin 10s linear infinite;
  position: absolute;
}

audio {
  border-radius: 30px;
  color: rgb(96, 207, 255);
  box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
}

@keyframes spin {
  0% {
    top: 0%;
    left: 0%;
    transform: rotate(0deg);
  }
  25% {
    top: 10%;
    left: 90%;
  }
  50% {
    top: 90%;
    left: 0%;
    transform: rotate(360deg);
  }
  75% {
    top: 100%;
    left: 90%;
  }
  100% {
    top: 0%;
    left: 0%;
    transform: rotate(0deg);
  }
}

/*# sourceMappingURL=space-theme.css.map */