/* body {
    margin: 0 auto;
    width: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background: url('images/space-deck-transparent.png') no-repeat center center, url('images/stars.gif') no-repeat center center;
    /* background-size: cover, cover;
    background-color: #000000; */
/* } */

@font-face {
    font-family: 'Orbitron';
    src: url(/fonts/Orbitron/Orbitron-VariableFont_wght.ttf); 
  }

#title {
    font-size: 1.875rem;
    text-align: center;
    margin: 10px;
    padding: 10px;
    background-color: yellow;
    border: 4px dotted green;
    color: red;
}

#request {
    background-color: black;
    padding: 5px;
    color: #00ff00;
    border-left: 4px solid #00ff00;
    border-right: 4px solid #00ff00;
}

#request p {
    color: #00ff00;
    font-family: "Orbitron", sans-serif;
}

#btn {
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
}

.container {
    /* display: flex;
    flex-direction: column; */
    display: inline-block;
    max-width: 400px;
    margin: 0 auto;
    background: #00ff00;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    text-align: center;
    border: 5px solid black;
    border-radius: 20px;
}

.alien-para {
    margin: 10px 0;
    color: #00ff00;
    font-size: 1.1rem;
    font-family: "Orbitron", sans-serif;
}

.alien-ul {
    list-style-type: square;
    padding: 10px 0 5px 30px;
    text-align: left;
    margin: 0;
}

.alien-li {
    font-size: 1rem;
    color: black;
    padding-bottom: 5px;
}

.btn {
    background-color: #00ff00;
    color: black;
    height: 40px;
    border-radius: 10px;
    margin: 0 10px 0;
    border: 4px solid red;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    display: inline;
    font-size: 1.2rem;
}

.btn:hover {
    cursor:pointer;
    /* background-color: yellow;; */
    color: red;
}

.btn:active {
      color: black;
    }

 @media (max-width: 768px) {
    .btn {
        display: block;
        margin: 0 auto .5em;
    }
 }