@keyframes b {
    0%, 50% {opacity: 1;}
    51%, 100% {opacity: 0;}
}
.b {
    animation: b 1.1s step-end infinite;
}

body{
    margin: 0;
    background-color: black;
    min-height: 100vh;
}

h1{
    color: rgb(214, 214, 214);
    font-family: monospace;
    font-size: 80px;
    letter-spacing: 10px;
    font-weight: normal;
}
p{
    color: rgba(128, 128, 128, 0.466);
    font-family: monospace;
    font-size: 20px;
    margin-top: -30px;
    white-space: pre;
}
.main{
    min-height: 70vh;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.box{
    position: absolute;
    top: 0;
    left: 0;
}
.box p{
    margin: 0;
}
#b{
    opacity: 0;
}
footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    font-family: monospace;
    font-size: 16px;
}
footer a {
    color: rgba(128, 128, 128, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: rgb(214, 214, 214);
}
