/* General body styling */
body {
    background-color: #794DB0;
    color: #FFFFFF;
    font-family: sans-serif;
    margin: 0;
    display: flex;
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
    min-height: 100vh; /* Ensures the height of the viewport is fully covered */
    text-align: center;
}

/* Image styling */
img {
    height: 200px;
    max-width: 20%; /* The image will take up 50% of the width of the viewport */
    height: auto; /* Maintain aspect ratio */
}

/* Tagline styling */
.tagline {
    font-family: monospace;
    margin-top: 20px;
    font-size: 0.9rem; /* Dynamically scales based on root font size */
}
