* {
    box-sizing: border-box;
}

html {
    height: -webkit-fill-available;
}

body {
    background-color: #242424;
    height: 100vh;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 10px;
}

div.title_box {
    width: 100%;
    height: min(50%,50vw);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.title_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    font-size: 4vh;
    margin-bottom: 2vh;
    margin-top: 0;
}

div.stuff_grid {
    gap: 20px;
    height: 35%;
    width: 100%;
    padding: 10px;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
}

a {
    text-decoration: none;
    height: min(50vh,100%);
    aspect-ratio: 0.75;
}

div.stuff_grid img {
    height: 75%;
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

div.stuff_grid div {
    margin-bottom: 20px;
    height: 100%;
    width: 100%;
    transition: 0.2s;
    display: inline-block;
    overflow: hidden;
}

div.stuff_grid div:hover {
    transform: scale(1.1);
}

div.stuff_grid h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    color: white;
    margin-top: 1vh;
    font-size: 2vh;
    height: 25%;
    width: 100%;
}