/* AZ_mobile.css - Optimized for No-Scroll (Apple/Android) */

html, body {
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents accidental bouncing/scrolling */
    background-color: gray;
    font-family: 'Century Schoolbook', serif;
}

/* Master container for all mobile pages */
.mobile-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

/* Content area for About/Contact text */
.mobile-content-box {
    width: 85%;
    flex: 1; /* Takes up available space between header and footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a {
    text-decoration: none;
    color: black;
}

.mobile-footer {
    font-size: 9pt;
    color: #444;
    padding-bottom: 15px;
    font-family: Arial, sans-serif;
}