@font-face {
    font-family: 'SiteFont';
    src: url('Pixeland.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'SiteFont', Arial, sans-serif;
    font-size: 140%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: inherit;
    text-decoration: none;
}

#datetime {
    text-align: center;
    padding: 20px;
}

main {
    width: 80%;
    max-width: 800px;
}

.post {
    margin: 20px 0;
    padding: 20px;
    text-align: center;
}

.slideshow {
    text-align: center;
}

.slideshow img, .slideshow video {
    width: 400px;
    height: 400px;
    display: none;
    margin: 0 auto;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0);
}

.description button {
    font-family: inherit;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    -webkit-appearance: none;
    appearance: none;
    color: inherit;
}

.description {
    margin-top: 10px;
    font-style: normal;
}

@media (max-width: 600px) {
    .slideshow img, .slideshow video {
        width: 300px;
        height: 300px;
    }
    .description button {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 170%;
    }
    .description button {
        font-size: 28px;
    }
    main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
