@import url("./reset.css");

:root {
    --red: #ee2d2d;
    --background: #f0f0f0;
    --shadow: #b0b0b0;
}

* {
    font-family: monospace, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
    color: var(--red);
}

.body-container {
    padding: 0 64px 0 64px;
}

@media only screen and (max-width: 768px) {
    .body-container {
        padding: 0 16px 0 16px;
    }
}

.shadow {
    text-shadow: 2px 2px 2px var(--shadow);
}

.title {
    text-align: center;
    margin: 16px 0px 32px 0px;
}

.section {
    margin-bottom: 32px;
}

.final {
    margin-top: 64px;
}

ul {
    list-style-position: inside;
}

.screenshot {
    display: block;
    height: 360px;
    margin-bottom: 32px;
}

.title-link {
    text-decoration: none;
    color: green;
}

li {
    list-style-position: inside;
    margin-bottom: 8px;
}

a.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.red {
    color: var(--red);
}
