html {
    color: white;
    background-color: #171717;
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

body, html {
    height: 100%;
    margin: 0;
}
body {
    padding-left: 10%;
    padding-right: 10%;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
    gap: 20px; /* Gap between columns */
}

.title {
    font-size: 100pt;
    font-family: "Bagel Fat One";
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
}

.left {
    padding-right: 10%;
}

.right {
}


.name {
    color: #F1F439;
}


.card-container {
    display: grid;
    grid-template-columns: repeat(2, 250px); /* Two columns with fixed width */
    gap: 20px; /* Gap between cards */
}

p > a {
    color: white;
}

.card {
    width: 250px; /* Fixed width for each card */
    height: 300px; /* Fixed height for each card */
    border-radius: 16px; /* Rounded corners for cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align items to the bottom */
    align-items: flex-start; /* Align items to the left */
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.card > * {
    padding: 12px;
}

.meta {
    object-fit: cover;
}

.card > .logo {
    width: 32px;
    margin-left: 22px;
    margin-right: 22px;
    margin-top: 22px;
}

.card > span {
    font-size: 16pt;
    margin-bottom: 22px;
    margin-left: 22px;
    margin-right: 22px;
    /*max-width: 90%;*/
}

/* For responsiveness */
@media (max-width: 768px) {
    .container { max-width: 95%}
    body {
        display: block;
    }
    .card {
        height: 300px;
        margin-top: 16px;
    }

    .card-container {
        display: block;
    }
}