@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
html {
    /* Thanks to Temani Afif <https://css-tricks.com/author/afiftemani/> */
    background: 
	repeating-radial-gradient(#fff 0 0.0001%,#ddd 0 0.0002%) 50% 0/250px 250px,
	repeating-conic-gradient(#fff 0 0.0001%,#ddd 0 0.0002%) 60% 60%/250px 250px;
    background-blend-mode: difference;
    animation: b 10s infinite alternate linear;
}
.title {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 32pt;
    color: #def;
    opacity: 0.5;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    letter-spacing: 0.3183098861837907em;
    cursor: default;
    margin-bottom: 72pt;
}
a:link {
    text-decoration: none;
    cursor: pointer;
}
img {
    border-radius: 20px;
    width: 25%;
    min-width: 250px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.menu {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 16pt;
    text-align: center;
    color: #ace;
    opacity: 0.5;
    letter-spacing: 0.3183098861837907em;
    transition: opacity 0.5s;
    cursor: default;
}
.menu:hover {
    opacity: 0.99;
}
@keyframes b {
    100% {background-position: 50% 0, 60% 500%}
}

