:root {
    --text-color: white;
    --text-alt-color: black;

    --background-color: black;
    --background-alt-color: white;
    --background-glass-color: rgba(0, 0, 0, 0.5);
}

body, html {
    font-family: "Roboto Light", "Roboto Light", Arial, Helvetica, sans-serif;
    background-image: url("assets/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

.main-grid {
    display: grid;
    grid-template-columns: 5% 1fr 5%;
}

/* Position text in the middle of the page/image */
.content {
    grid-column: 2;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    background-color: var(--background-glass-color); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    margin: 16px;
    padding: 20px;
    text-align: center;
}

.image_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(182px, 100%), 1fr));
    gap: 1rem;
}

.mdc-card {
    background: #f1f1f1;
    color: black;
    min-width: 182px;
    min-height: 100px;
    padding: 16px;
}

.mdc-card img {
    aspect-ratio: 1;
    width: 100%;
}
