html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    background-color: black;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 100vw;
    padding: 1rem 0;
}

.photo-container img {
    height: auto;
    max-height: calc(100vh - 5rem);
    object-fit: contain;
}

.main-photo {
    width: 100%;
    z-index: 0;
}

.logo {
    position: absolute;
    right: calc(50% + 50px);
    top: 23.1%;
    z-index: 1;
}

.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    .logo {
        right: calc(50% + 150px);
    }
}
