* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    background: #000;
    color: #fff;

    font-family: Arial, sans-serif;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

main {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.header {
    flex-shrink: 0;
}

h1 {
    margin: 0;

    font-size: clamp(50px, 10vw, 80px);
    letter-spacing: 8px;
}

.header p {
    margin: 15px 0 0;

    font-size: 14px;
    letter-spacing: 3px;
}

.merch {
    margin-top: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 45vh;
}

.merch img {
    display: block;

    width: min(45vh, 75vw);
    max-height: 45vh;

    object-fit: contain;
}

.merch h2 {
    margin: 8px 0 0;

    font-size: 14px;
    letter-spacing: 4px;
}

.product-info {
    margin: 5px 0 0;

    font-size: 10px;
    letter-spacing: 3px;
    color: #888;
}

button {
    margin-top: 12px;

    padding: 11px 24px;

    background: #fff;
    color: #000;

    border: none;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2px;

    cursor: pointer;
}

button:hover {
    background: #ccc;
}