
main { margin: 0; }

@media screen and (min-width: 1025px) {
    :root {
        --main-fontsize: 3em;
        --main-fontsize-sm: 2em;
        --main-margin: 100px;
    }
    #div > div {
        animation-duration: 1s;
        animation-name: slidein;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    :root {
        --main-fontsize: 2em;
        --main-fontsize-sm: 1em;
        --main-margin: 60px;
    }
    #div > span {
        animation-duration: 1s;
        animation-name: slidein;
    }
}

@media screen and (max-width: 700px) {
    :root {
        --main-fontsize: 1em;
        --main-fontsize-sm: 0.8em;
        --main-margin: 20px;
    }
}

#div {
    font-family: "Lato-Bold";
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    background-image: url("/pg_home/ren.webp?ts=");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    }

#div > div {
    margin: 0;
    padding: 0;
    color: #EFEFEF;
    text-shadow: 0px 0px 15px #000000;
    margin-right: var(--main-margin);
    margin-bottom: var(--main-margin);
    display: inline;
    }

p { margin: 0;
    padding: 0;
    }

#div > div > p {
    font-size: var(--main-fontsize);
    }

#div > div > #ps {
    font-size: var(--main-fontsize-sm);
    }

@keyframes slidein {
    from {
        margin-right: -100%;
    }

    to {
        margin-right: var(--main-margin);
    }
}
