/* style.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns image to top of mobile screen */
}

.page-container {
    width: 100%;
    max-width: 100vw;
}

.full-screen-image {
    display: block;
    width: 100%;    /* Scales to phone width */
    height: auto;   /* Maintains aspect ratio */
    border: none;
}

/* Removes blue highlight on mobile tap */
a {
    -webkit-tap-highlight-color: transparent;
}