body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background-image: linear-gradient(33deg, rgba(241,228,203,1) 0%, rgba(201,216,216,1) 68%);
}
.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .15;
    background-image: url("bg.png");
}
.box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    z-index: 100;
}
.box h1 {
    font-size: 72px;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    color: #565e5d;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .5);
}
.box h1 .dot {
    animation: dot 1.2s linear infinite;
}
.mail {
    margin-bottom: 20px;
    z-index: 100;
}
.mail a {
    font-size: 20px;
    color: #565e5d;
    font-family: 'JetBrains Mono', monospace;
}
.mail a:hover {
    color: #000;
}

@keyframes dot {
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}