html, body {
    margin: 0px;
    padding: 0px;
    font-size: 13px;
    position: relative;
    line-height: 3px;
    text-align: center; /* Changed from left to center */
    height: 100%; /* Changed from 90% to 100% for full height */
    display: flex;
    justify-content: center;
    align-items: center;
}

address {
    font-family: 'Proza Libre', sans-serif;
    text-align: center; /* Changed from left to center */
    font-weight: normal;
    font-size: 18px;
    line-height: 1;
    padding-left: 0; /* Removed left padding since we're centering */
}

.section {
    font-family: 'Proza Libre', sans-serif;
    background: transparent;
    background-color: #555555FF;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: center;
    background-size: 100% 100%;
    border-radius: 1em;
    position: relative; /* Changed from absolute to relative */
    line-height: 3px;
    margin: auto; /* Added auto margins */
    transform: none; /* Removed transform since we're using flexbox */
    width: 90%; /* Added width */
    max-width: 600px; /* Added max-width */
}

.minor {
    font-family: 'Averia Sans Libre', cursive;
    text-align: center;
    font-weight: normal;
    font-size: 40px;
    line-height: 5px;
    text-shadow: 2px 2px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.para {
    font-family: 'Averia Sans Libre', cursive;
    text-align: center; /* Changed from left to center */
    font-weight: normal;
    font-size: 22px;
    line-height: 16px;
    padding: 0 5px; /* Changed padding to be equal on both sides */
    text-shadow: 2px 2px #000000;
}