/* Universal box-sizing for better responsiveness */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background-color: #fdfaf2;
    background-image: url('punctuation-background.svg');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.content {
    text-align: center;
    background-color: #fdfaf2; /* Solid background for readability */
    padding: 40px;
    border-radius: 15px;
    max-width: 700px; /* Constrain width of the content */
    width: 100%; /* Ensure it takes full width up to max-width */
}

.logo {
    font-size: 60px;
    font-weight: bold;
}

.hero h1 {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vision-placeholder {
    font-size: 20px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .content {
        padding: 20px;
        max-width: 100%; /* Allow content to take full width on smaller screens */
        border-radius: 0; /* Remove border-radius on very small screens for full edge-to-edge */
    }

    .logo {
        font-size: 36px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .vision-placeholder {
        font-size: 15px;
        max-width: 100%; /* Ensure text fills available width */
    }
}