body {
    background-color: black;
    overflow-x: hidden;
    font-family: "NIN";
    text-transform: uppercase;
}
.cornerbox {
    border-style: none none none solid;
    background-color: black;
    color: #7aff00;
    border-width: 1px;
    border-color: #7aff00;
    width: 1000px;
    height: 1000px;;
    position: absolute;
    right: -500px;
    top: -500px;
    justify-content: center;
    transform: rotate(-45deg);
    z-index: 2;
}
.cornerdesign {
    position: absolute;
    transform: translatey(500px);
    height: 100%;
    width: 100%;
}
.cornerdesign hr {
    border-color: rgb(122, 255, 0);
    box-shadow: 5px 5px 0 0 rgb(122, 255, 0, 0.4);
}
.header {
    background-color: black;
    color: #7aff00;
    border-style: none none solid none;
    border-width: 1px;
    border-color: #7aff00;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 90px;
    font-size: 70px;
    z-index: 3;
    pointer-events: none;
}
.blink {
    animation: blink-anim 1s steps(1, start) infinite;
}
@keyframes blink-anim {
    0%, 100% {
        background-color: black;
        color: #7aff00;
    }
    50% {
        background-color: #f2ff26;
        color: black;
    }
}
a {
    text-decoration: none;
    font-size: 16px;
    color: #7aff00;
}
a:hover {
    animation: blink-anim 1s steps(1, start) infinite;
}
.container {
    position: absolute;
    top: 140px;
    left: 40px;
    background-color: #7aff00;
    color: black;
    font-size: 40px;
    padding: 10px;
}
.container a {
    text-decoration: none;
    background-color: black;
    color: #7aff00;
    font-size: 40px;
}
.uc {
    text-decoration: line-through;
}