::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 100%;
    min-height: 100vh;
    padding: 0;

    color: white;
    overflow-x: hidden;
}

.bg::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../../images/background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* filter: blur(6px); */
    z-index: -2;
    pointer-events: none;
}

.bg::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to right, #181818 60%, #686868 100%);
    opacity: 0.65;
    z-index: -1;
    pointer-events: none;
}

h1, p {
    margin: 0;
    text-align: center;
}

h1 {
    font-family: 'Tilt Warp';
    font-weight: lighter;
    font-size: 2.5rem;
}

p {
    font-family: 'Quicksand';
    opacity: 0.9;
}

.table {
    display: grid;
    gap: 2vw;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    /* backdrop-filter: blur(12px); */
    border-radius: 16px;
    text-align: center;
    cursor: pointer;

    border: 1px solid rgba(255,255,255,0.1);

    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
    will-change: transform;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.25);
}

.card p {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    line-height: 1.5rem;
}

@media (max-width: 1024px) {
    .table {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        justify-content: normal;
    }
}

@media (max-width: 600px) {
    .table {
        grid-template-columns: 1fr;
    }

    .container {
        padding-bottom: 5vh;
    }
}