@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

body {
    /*background-position: center;*/
    background-size: cover;
    font: 20px Helvetica, sans-serif;
    color: #fff;
    text-align: center;
    padding: 150px;
    min-height: 100vh;
    text-shadow: 0.08em 0.08em 0.06em black;
    font-weight: bold;
    /*font-family: 'Anonymous Pro', monospace;*/
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
}

body::before {
    content: "";
    position: fixed; /* Asegura que cubra toda la ventana */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    /*background-size: cover;*/
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
}

h1 {
    font-size: 50px;
}
p#message{
    font-family: 'Anonymous Pro', monospace;
}
#img360 {
    border-radius: 100px;
    margin-left: 0px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

h1#headline {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

li span {
    display: block;
    font-size: 4.5rem;
}

#refreshButton {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Anonymous Pro', monospace;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#refreshButton:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
