* {
    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: "Inter", sans-serif;
}

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

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

body {

    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-family: sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

h1 img {
    width: 700px;
    max-width: 70%;
    margin: auto;
}

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

}

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

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