html,
body {
    background: rgba(10, 10, 10, 0.9);
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    animation-name: blurslowly;
    animation-iteration-count: infinite;
    animation-duration: 15s;
}

.ctr {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
}

.bg {
    position: absolute;
    display: flex;
    flex-direction: column;
    min-width: 240px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid #050505;
    background:
        url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAlSURBVChTYxAREfnPw8PzHxeNogCGkfnEmQDDyDph/IF3A89/ABQxTIGh/maWAAAAAElFTkSuQmCC') repeat;
    font-family: Verdana, sans-serif;
    color: #cccccc;
}

.border-light {
    border: 1px solid #3c3c3c;
}

.border-dark {
    border: 3px solid #282828;
}

.border-inside {
    border: 1px solid #3c3c3c;
}

@keyframes blurslowly {
    0% { filter: none; }
    92% { filter: blur(0); }
    96% { filter: blur(1px); }
    100% { filter: blur(0); }
}

.rainbow-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 3px;
}

.rainbow-1,
.rainbow-2 {
    height: 1px;
    width: 100%;
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.rainbow-1 {
    background-image: linear-gradient(
        to right,
        #ff66cc,
        #ff99dd,
        #ff44bb,
        #ff99dd,
        #ff66cc
    );
}

.rainbow-2 {
    background-image: linear-gradient(
        to right,
        #aa3388,
        #cc5599,
        #aa3388,
        #cc5599,
        #aa3388
    );
    animation-delay: 1s;
}

.rainbow-3 {
    height: 1px;
    width: 100%;
    background: #090909;
}

@keyframes shimmer {
    0% { background-position: -100% 50%; }
    100% { background-position: 100% 50%; }
}

.container {
    display: flex;
    flex-direction: column;
}

.inside {
    padding: 18px;
}

.body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 0px #050505;
}

.subtitle {
    margin-top: 6px;
    font-size: 12px;
    color: #8a8a8a;
}

.links {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    width: 180px;
}

.button {
    border: 1px solid #323232;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    margin-bottom: 8px;
    background: linear-gradient(0deg, #191919, #232323);
    text-decoration: none;
    color: #cccccc;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 1px 1px 0px #050505;
    transition: 0.15s;
}

.button:hover {
    background: linear-gradient(0deg, #232323, #343434);
}

.button:active {
    background: linear-gradient(0deg, #232323, #191919);
}