@import url("/reset.css");
@import url('/fonts/IBMPlexMono.css');
@import url('/fonts/NotoEmoji.css');

html {
    display: flex;
    justify-content: center;
}

body {
    background-color: rgb(48, 66, 77);
    color: rgb(218, 218, 218);
    max-width: 650px;
    margin: 15px;
    margin-top: -50px;

    font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.4em;
}

h1 {
    font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: 3em;
    line-height: 1em;
    margin-top: 70px;
    margin-bottom: 30px;
}

h2 {
    font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 1.7em;
    line-height: 1em;
    margin-bottom: 30px;
}

p {
    margin-top: 0.6em;
}

a {
    color:rgb(255, 254, 168)
}

a:focus, a:hover {
    color:rgb(170, 170, 74)
}

.emoji {
    font-family: 'Noto Emoji', emoji;
    color: white;
}

.italic {
    font-style: italic;
}

.previewBox {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.previews {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.previews img {
    width: 100%;
    margin-bottom: 10px;
}

.downloads {
    display: flex;
    flex-direction: column;
    width: 25%;
}