* {
    margin: 0;
    padding: 0;
    border: none;
    font-family: Gottak, Helvetica, sans-serif;
}

html {
    background-color: black;
    background-image: url("/images/B+B-Marque-gradient.svg");
    background-size: cover;
    color: white;
}

body {
    background-color: black;
    color: white;
    text-align: center;
    overflow: hidden;
}

#tile-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 67.3px);
    grid-template-rows: repeat(auto-fit, 87px);
    z-index: 0;
    perspective: 1000px;
}

.tile {
    position: relative;
    width: 67.3px;
    height: 87px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

.tile.flipped {
    transform: rotateY(180deg);
}

.tile-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-image: url("/images/B+B-Marque-tileable-pattern.svg");
    background-size: 67.3px 87px;
    background-position: center;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: darken;
}

.tile-front {
}

.tile-back {
    transform: rotateY(180deg);
}

/* Basic black gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, black 80%);
    pointer-events: none;
    z-index: 1;
}

main {
    z-index: 2;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.coming-soon {
    font-size: 20px;
    margin: 40px 0 15px;
    font-weight: 300;
    color: #e73e26;
}
