/* Reset default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body styles */
body {
    height: 100vh; /* Full height of the viewport */
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: #f0f0f0; /* Optional background color */
}

/* Container styles */
.container {
    text-align: center; /* Center text inside the container */
}

/* Logo styles */
.logo {
    max-width: 100%; /* Responsive logo */
    height: auto; /* Maintain aspect ratio */
}