body {
    margin: 1.5em;
    background-color: rgb(0, 0, 0);
}

p {
    color: rgb(169, 248, 166);
    text-shadow: rgb(41, 240, 48) 0px 0px 15px;
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    word-spacing: 5px;
    text-align: justify;
    align-items: center;
    padding: 1.5em;
    font-size: 1.5em;
}

span {
    animation: blinker 1s linear infinite;
}

a {
    color: rgb(169, 248, 166);
    text-shadow: rgb(41, 240, 48) 0px 0px 15px;
    font-size: 1.5em;
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

a#play {
    font-size: 4em;
}

.hidden {
    display: none;
}

#button.visible {
    border-style: solid;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    right: 2.5em;
    margin-bottom: 2em;
}

a#button:hover {
    background-color: #103812;
    text-decoration: underline;
    transition: 0.5s;
    box-shadow: rgb(41, 240, 48) 0px 0px 15px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media screen and (min-width: 800px) {
    p {
        font-size: 3em;
        padding: 1em 2em;
    }

    a {
        font-size: 3em;
    }
}