
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
    margin-top: -80px;
}
h1 {
    font-size: 80px;
    color: #333;
}
p {
    font-size: 20px;
    color: #666;
}
img{
    max-width: 300px;
}
img.logo {
    margin-bottom: -7px;
}


@media (max-width: 575px) {
    p {
        font-size: 18px;
    }
    h1 {
        font-size: 40px;
   }

    img{
        max-width: 200px;
    }

    img.logo {
        margin-bottom: unset;
    }
}


