.splashy {
    /* margin: 0;
    font-family: 'Segoe UI', sans-serif; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background: radial-gradient(circle at center, #1f1f1f, #000);
    color: white;
    text-align: center;
    overflow: hidden;
}

.centered {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black;
    border: 3px solid white;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 50px;
}

#suit-backdrop {
    margin-top: 0 !important;
}

.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.site-title {
    font-size: 3rem;
    margin: 0;
    font-family: 'Hax';
    /* font-size: 55px; */
}

.tagline {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    font-style: italic;
}

.buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 0 0.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    background-color: #ff6600;
    color: white;
    transition: background-color 0.3s;
}

.buttons .btn.secondary {
    background-color: #444;
}

.buttons .btn:hover {
    background-color: #ff8800;
}