body {
    background-color: #090909;
    text-align: center;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    width: 100vw;
    height: 100vh;
    color: white;
    font-family: Arial, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: center;
    flex-direction: column;
}

.main_block {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: center;
    flex-direction: column;
}

.logo {
    width: 10vw;
}

.title {
    font-weight: bolder;
    font-size: 4vw;
    padding-bottom: 1vw;
}

.title::before {
    content: "Goodbye, kometa!";
    filter: blur(2vmin);
    position: absolute;
    z-index: 10;
}

.description {
    font-weight: normal;
    font-size: 1vw;
    min-font-size: 100px;
}

@media (max-width: 900px) {
    .description {
        font-size: 3vw;
        width: 70%
    }

    .title {
        font-size: 8vw;
    }

    .logo {
        width: 50%;
    }
}