html,
body {
    background-color: black;
    text-align: center;
}

h1 {
    color: rgb(255, 69, 69);
    animation: colorShift 5s infinite;
}

@keyframes colorShift {
    0% {
        color: rgb(255, 69, 69);
    }

    50% {
        color: rgb(255, 45, 192);
    }

    100% {
        color: rgb(255, 69, 69);
    }
}

p {
    color: white;
}

a {
    color: rgb(69, 205, 255);
}

button {
    background-color: rgba(54, 54, 54, 0.584);
    border: 1px solid rgb(121, 121, 121);
    border-radius: 10px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

#status {
    font-size: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.parameter {
    color: gray;
    margin-top: 0;
}