body{

    display: flex;
    justify-content: center;
    /* border: 2px solid red; */
    height:100vh;
    width: auto;
    margin:0;
}


.caution{
    /* border: 2px solid red; */
    display:flex;
    margin-top:50px;
    flex-direction: column;
    height: 500px;
    width: 500px;
    align-items: center;
    justify-content: flex-start;
}

.caution p{
    display:flex;
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items:flex-end;
    font-size:60px;
    font-weight:900;
    text-align: center;
    font-family: "Pixelify Sans", sans-serif;

}

@media (max-width: 600px) {
    .caution {
        width: 90vw;
        height: auto;
    }

    .caution img {
        width: 100%;
    }

    .caution p {
        font-size: 32px;
    }
}