body {
    font-family: 'Oxanium', cursive;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
}
html {
    scroll-behavior: smooth;
}
.tile {
    background-color: var(--bg);
    padding: 20px;
    margin-top: 5vh;
    margin-left: 10vw;
    margin-right: 10vw;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}
h1, h3 {
    color: var(--text);
    text-align: left;
}
h3 {
    margin-top: 5px;
    margin-bottom: 0;
}
span {
    text-align: left;
    display: block;
    margin: 0;
}
.small-tile {
    width: max(49%, 280px);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
.small-tile span {
    color: var(--text-muted);
    font-size: large;
    display: inline-block;
}
.small-tile img {
    width: 30%;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.invisible-tile {
    padding: 20px;
    margin-top: 5vh;
    text-align: center;
}
.invisible-tile h1 {
    margin-left: 10vw;
}
.item-tile {
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: var(--bg-light);
    width: 360px;
    overflow: hidden;
    display: inline-block;
    margin: 10px;
}
.item-tile img {
    width: 360px;
}
.content {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 30%;
    vertical-align: middle;
}
.item-tile span {
    color: var(--text-muted);
}
a {
    text-decoration: none;
    text-align: center !important;
}
a span {
    text-align: center;
}
.content:has(img) {
    text-align: center;
    font-size: small;
}
.content:has(img) img{
    width: 40%;
}
#contact h1{
    margin-bottom: 0;
}
#contact a {
    color: var(--text-muted);
}