body {
    background: black;
    color: white;
    font-family: 'Courier New', monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: red;
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

input {
    background: black;
    color: red;
    border: none;
    font-size: 25px;
    width: 60%;
    text-align: center;
    text-transform: uppercase;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s;
    font-family: 'Courier New', monospace;
}

#screamCount {
    color: red;
    font-size: 18px;
    margin-bottom: 20px;
}

.screamMessage {
    position: absolute;
    color: red;
    font-size: 25px;
    width: 100%;
    left: 50%;
    transform: translateX(-50% -60px);
    animation: floatAway 3s forwards;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    max-width: 60%;
}

@keyframes floatAway {
    0% {
        transform: translate(-50%, -60px);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -400px);
        opacity: 0;
    }
}
