body {
    background-color: #fefbf9;
    color: #fff;
    min-height: 100vh;
    min-width: 320px;
    font-family: monospace;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 2;
    overflow: hidden;
    position: relative;
    margin: 0;
    /* font: "Founders Grotesk",apple-system,BlinkMacSystemFont,sans-serif; */
}

a:hover {
    border-color: #fff;
}

.block {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);

    overflow: hidden;
    display: block;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    margin: auto;

   
}

.content .logo {
    width: fit-content;
    margin-bottom: 66px;
    animation: show 2s forwards;
    animation-delay: .0s;
}

.content .text {
    margin-top: 0;
    margin-bottom: 40px;
    transform: translateY(150%);
    animation: slideUp 1s forwards;
    animation-delay: .5s;
    opacity:0;
    color: #000;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 720px) {

    body {
        font-size: 15px;
    }

    .content{
        width: auto;
        margin: 0 34px;
    }

    .content .logo {
        width: 165px;
        margin-bottom: 40px;
    }

    .content .text {
        margin-bottom: 0px;
    }
}