﻿.page-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem;
    justify-items: center;
}

    .page-block h3 {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 1rem;
        justify-content: start;
    }

.section-header {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
    margin-bottom: 1rem;
}

.teaser-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.features {
    padding: 2rem;
    align-items: center;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-badge {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

    .store-badge:hover {
        transform: scale(1.1);
    }

.input {
    width: 100%;
    margin: .4rem 0;
    padding: .7rem;
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--fg);
}

.message-box {
    width: 100%;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    resize: none;
    overflow: auto;
}

.merch-video {
    width: 100%;
    height: 420px;
}

.home-teasers {
    display: flex;
    flex-direction: row;
    align-content: center;
}
