/* Global styling */
html {
    font-family: 'Roboto', sans-serif, 'FiraMono-Regular', serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Grid settings */
.grid-container {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(500px, 3fr);
    gap: 2em;
    padding: 1em;
}

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

/* Styling of the grids */
.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.item a {
    color: black;
}

.navbar a {
    text-decoration: none;
}

ul.navbar li {
    list-style: none;
    line-height: 2;
}

h1.navbar a {
    font-size: 3rem;
    line-height: 1;
}

/* Main content styling */
p.description {
    max-width: 95%;
    text-align: left;
}

img {
    max-width: 95%;
    height: auto;
    max-height: 100%;
    align-items: center;
}

p.info {
    max-width: 95%;
}