* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Simple clean white background */
body {
    background: #efefef;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Center content */
.content {
    padding: 20px;
}

.main-image {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto 20px auto;
}

h1 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

p {
    font-size: 18px;
    color: #555;
    margin-top: 8px;
}

/* Logo at bottom center */
.logo {
    /* position: absolute; */
    bottom: 20px;
    width: 140px;
    left: 50%;
    /* transform: translateX(-50%); */
    padding: 10px;
}
