body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    padding: 20px;
    user-select: none;
}
.code-box {
    background: linear-gradient(45deg, #ff0000, #8b0000);
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto;
    font-size: 22px;
    font-weight: bold;
    max-width: 350px;
    animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
    from {
        box-shadow: 0 0 15px #ff0000;
    }
    to {
        box-shadow: 0 0 25px #8b0000;
    }
}
img {
    align-items: center;
    width: 200px;
    margin-top: 20px;
}
article {
    text-align: left;
    margin: 20px auto;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
color: #000000;
font-style: oblique;
transition: color 1s ease;
transition: 0.3s
}

a:hover {
color:  #ffffff;
transform: scale(1.01);

}