body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffcdb2, #e6d6f9);


    height: 100vh;
}

.caption-of-truth {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 5vh;

    font-weight: bold;
    font-size: 1.6rem;
}

.center-of-universe {
    text-align: center;
    height: 90vh;
}

img {
    height: 100%;
}

@media screen and (max-width: 425px) {

    .caption-of-truth {
        font-size: 1.2rem;
        height: auto;
        padding: 10px;
        height: 3vh;
    }

    .center-of-universe {
        height: 80vh;
        max-width: 100%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    img {
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
}
