* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    background: #121212;
    color: white;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    gap: 60px;
    text-align: center;
    justify-content: center;
}

.card {
    width: min(40vw, 400px);
    max-height: 50%;
    display: block;
}

.card h2 {
    margin-bottom: 15px;
    font-weight: normal;
}

.photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: block;
}

.photo img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    pointer-events: none;
}