* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Putting font poppins it is a very beautiful font also if you dont have installed it on your system it might not show so you need to import it from *google fonts* */
    font-family: Arial, Helvetica, sans-serif;
}

/* Now here we are just styling the background and centering it to the middle */

html {
    background: #eee;
    background-size: cover;
    touch-action: pan-y;
    -webkit-text-size-adjust: none;
    padding-bottom: env(safe-area-inset-bottom);
}

body {
    /*  border: 8px solid #D22D29;
    background: #fff;
    font-family: 'DINCond';
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    min-height: calc(100vh - 55px);
    width: 600px;
    max-width: 100%;
    margin: auto;
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: 3rem;
    padding-right: 3rem;*/



    color: #222;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    min-height: calc(100vh);
    padding-bottom: env(safe-area-inset-bottom);
    overflow: hidden;
}

h1 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 300;
}


p {
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-bottom: 2rem;

}

p span {
    font-size: 60px;
    color: #e50019;
    font-weight: bold;
    font-style: italic;
}

img {
    max-width: 80%;
    width: 600px;
}
