/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    text-align: center;
}

.center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Logo container */
.logo {
    width: 100%;
    max-width: 500px;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Text */
.message {
    font-size: 16px;
    color: #000;
}
