body {
    font-family: Roboto, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 110%;
    background-color: #1f1c1c;
    margin: 0;
    padding: 10px;
    padding-top: 40px;
    min-height: calc(100vh - 50px);
    color: white;
}

#content {
    margin: 0 10%;
}
img {
    height: calc(19.8vw - 12px);
    border-radius: 8px;
    margin-top: 14px;
    margin-right: 8px;
    margin-bottom: -5px;
}
img:last-of-type {
    margin-right: -10px;
}
@media screen and (max-width: 50em) {
    #content {
        margin: 0;
    } 
    img {
        height: calc(25vw - 16px);
        min-height: 200px;
    }
}
@media screen and (min-width: 1500px) {
    #content {
        width: 1200px;
        margin-left: calc(50% - 600px) !important;
    }  
    img {
        height: 296px;
    }  
}

.block {
    padding: 20px;
    margin: 15px 0;
    background-color: #4d4243;
    border-radius: 15px;
}

a {
    text-decoration: none;
    color: #daa7a9;
}
a:hover {
    text-decoration: underline;
}

/* Link Types */
a::after {
    display: inline-flex;
    content: url('../../res/icon/link.svg');
    height: 0.85em;
    transform: translate(4px, 0.07em);
    margin-right: 2px;
}
a.app::after {
    content: url('../../res/icon/app.svg');
}
a.play::after {
    content: url('../../res/icon/play.svg');
}
a.git::after {
    content: url('../../res/icon/git.svg');
}
a.itch::after {
    content: url('../../res/icon/itch.svg');
}
a.sidequest::after {
    content: url('../../res/icon/sidequest.svg');
}
/* Inline Icons */
#share-ios {
    color: #0f8dff;
}
#share-ios::after {
    content: url('../../res/icon/share-ios.svg');
}
#install-chrome::after {
    content: url('../../res/icon/install-chrome.png');
    margin: 0 3px;
}

h1 {
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
}
h2 {
    margin: 0;
    margin-bottom: 10px;
    margin-top: -6px;
    font-weight: 700;
}

br {
    display: block;
    margin-top: 10px;
}

h2 b {
    font-weight: bolder;
}

.light {
    font-weight: 400;
}

ol, ul {
    margin: 0;
    padding-left: 20px;
}
li {
    margin-top: 8px;
    margin-left: 0;
}
.subtitle {
    display: block;
    margin-top: -9px;
    padding-bottom: 6px;
    font-weight: 600;
}

.snippet {
    background-color: #1f1c1c50;
    margin: -3px;
    padding: 3px;
    border-radius: 8px;
    display: inline;
    break-before: avoid;
    break-after: avoid;
    color: #daa7a9;
}