@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f5f0e8;
    color: #2c2a25;
    font-family: 'Anonymous Pro', monospace;
    min-height: 100vh;
    padding: 2rem;
}

.layout {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 4rem);
}

.text h1 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.text a {
    color: #2c2a25;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text a:hover {
    color: hsl(39, 100%, 50%);
}

.photo img {
    width: 50%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 512px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .photo {
        display: none;
    }
}