@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lora", sans-serif;
    color: darkgray;
    background-color: #212931;
    font-size: 1rem;
}

h1,
h2 {
    padding: 0px;
    margin-bottom: 0px;
    font-size: 3rem;
}

p {
    color: white;
    font-size: 1.5rem;
}

.legend {
    font-size: 0.9rem;
    text-align: center;
    /* Center text horizontally */
}

a,
a:hover,
a:active,
a:visited {
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
}

.infolink,
.infolink:hover,
.infolink:active,
.infolink:visited {
    color: white;
    font-size: 1.0rem;
}

#title {
    color: white;
    text-align: center;
}

#title:hover::after {
    content: ' ☕️';
}

.grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 10px;
}

.grid-item {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    padding-left: 50px;
    font-size: 15px;
    text-align: left;
    width: 40%;
    max-width: 400px;
    font-size: 1.3rem;
}

@media (max-width: 600px) {
    .grid-item {
        width: 90%;
        padding-left: 30px;
    }
}

.link-logo {
    padding: 5px;
    padding-right: 20px;
    height: 40px;
    vertical-align: middle;
}