/*
    Default press kit values. These are imported BEFORE any other custom CSS files,
    so you can override them
*/
body.custom-body {
    font-family: "carlmarx-handwriting-regular", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.game-press-kit-art {
    position: relative;
    overflow: hidden;
    
    min-height: 30vw;
    height: auto;
}

.game-press-kit-info {
    background-color: var(--brand-dark-gray);
    
    height: auto;
}

.game-press-kit-info h1 {
    color: white;
    font-size: 3rem;

    margin: 0;
}

.game-press-kit-info p,
.game-press-kit-info a {
    color: white;
    font-size: clamp(0.1rem, 1.5rem, 1.5rem);
    text-align: center;

    margin: 0;
}

.game-press-kit-info p {
    padding: 1rem 5rem;
}

.game-press-kit-info a {
    border: 1px solid white;
    border-radius: 8px;
    width: fit-content;

    padding: 0.5rem 1rem;

    text-decoration: none;

    transition: background-color 0.3s ease;
}

.game-press-kit-info a:hover {
    background-color: var(--brand-color);
}