@charset "UTF-8";

body {
    overflow-x: hidden;
}
section {
    width: 100%;
    height: 100dvh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
img.topImg {
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transform: translate(5px, 0px);
}

@media screen and (max-height: 900px) {
    section {
        height: 100%;
        min-height: 100dvh;
    }
    img.topImg {
        margin: 100px 0;
    }
}
@media screen and (max-width: 600px) {
    img.topImg {
        max-width: 66.666%;
        margin: 100px 0;
        transform: translate(5px, 0px);
    }
}