/* styles.css */

body {
    background: #dedede;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.auto-scaled-image {
    max-width: 100%; /* Allow image to fill horizontally */
    max-height: 90vh; /* Set a maximum height (80% of the viewport) */
    object-fit: cover; /* Maintain aspect ratio */
}

p {
    color: #404040;
    font-family: 'Quicksand', "Century Gothic", Helvetica;
    font-size: 20px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}
