@import url('https://fonts.googleapis.com/css2?family=Coda&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla&display=swap');
body {
    margin: 0px;
    padding: 0px;
    background-color: #151515;
    font-family: 'Coda', cursive;
    color: white;
    line-height: 30px;
}
h {
    padding: 10px;
    font-size: 2em;
    font-weight: bold;
}
.header {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
}
.limit {
    background-color: #111;
    width: 100%;
    margin: 0;
}
.selection {
    margin-right: 10px;
    display: flex;
    justify-content: space-evenly;
}
.selection a {
    text-decoration: none;
    color: #ccc;
    padding: 10px;
}
.container {
    margin: 10px auto;
    display: flex;
    justify-content: space-evenly;
    width: 60%;
    min-width: 300px;
    padding: 5px;

}
.grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
    width: 100%;
    row-gap: 1em;
    align-items: space-around;
    grid-auto-rows: minmax(100px, auto);
}
.tile {
    min-width: 30%;
    min-height: 100px;
    background-color: #111;
    padding: 13px;
    padding-top: 0px;
    line-height: 0px;
    border-radius: 5px;
    border: 1px #333 solid;
}
@media screen and (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .bigtile {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;
    }
    .header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }
}
.tile h1 {
    font-family: 'Coda', cursive;
    font-size: 1.4em;
    font-weight: lighter;
    line-height: 30px;
    margin-bottom: 3px;
}
hr {
    height: 1px;
    background-color: #333;
    border: none;
}
h2 {
    font-family: monospace;
    font-size: 1.5em;
    line-height: 23px;
    color: #eee;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 100;
}
p {
    font-family: 'Karla', sans-serif;
    font-size: 0.9em;
    line-height: 23px;
    color: #eee;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 100;
    margin: 0 auto;
}
button {
    width: 100%;
    min-height: 30px;
    border-radius: 5px;
    border-width: 1px;
    font-family: 'Coda', cursive;
}
button:hover {
    cursor: pointer;
    box-shadow: 0px 0px 2px 2px #030303;
}
.github {
    border: #222 solid;
    color: #ccc;
    background-color: #333;
}
.github:hover {
    background-color: #444;
}
.api {
    border: rgb(0, 86, 199) solid;
    color: #eee;
    background-color: rgb(0, 110, 255);
}
.api:hover {
    background-color: rgb(21, 122, 255);
}
pre {
    line-height: 15px;
}
