:root {
    --base: #E20CD5;
    --spacing: 10px;
    --blur: 10px;
}

img {
    width: 650px;
    aspect-ratio: auto 650 / 406;
    height: 410px;
    padding: var(--spacing);
    background: var(--base);
    filter: blur(var(--blur));
}

.hl {
    color: var(--base);
}

body {
    text-align: center;
    background: #B0B1B1;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 30px;
}
footer {
    background: rgba(0, 0, 0, .4);
    text-align: center;
    font-size: 15px;
}

.controls {
    margin-bottom: 25px;
}

input {
    width: 100px;
}
footer p a {
    text-decoration: none;
}

footer p a:hover {
    color: blue;
}