* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 1330px) {
        img {
            width: 200px;
            height: 265px;
        }
    }

    @media screen and (max-width: 880px) {
        h1 {
            font-size: 64px;
        }
    }

    @media screen and (max-width: 600px) {
        h1 {
            font-size: 40px;
        }
    }

    @media screen and (max-width: 320px) {
        h1 {
            font-size: 36px;
        }
    }

    @media screen and (max-width: 280px) {
        h1 {
            font-size: 32px;
        }
    }
}

h1 {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 96px;
}

img {
    position: absolute;
    right: 0;
    bottom: 0;
}
