body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #eceff1; /* Light grey background for some color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column; /* Stack elements vertically */
}

.logo-container {
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Ensure the image doesn't overflow the rounded corners */
    display: inline-block; /* Only as big as necessary */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Initial subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for movement and shadow */
}

.logo-container img {
    width: 100%; /* Increase the logo size */
    max-width: 600px;
    display: block; /* Remove any inline spacing */
    cursor: pointer;
}

.tagline {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    color: #455a64;
}
