body {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    color: #e8e6e3;
    background-color: #101014;
    margin: 0;
    padding: 0;
}

main {
    padding: 1%;
}

.closed {
    filter: grayscale(100%);
}

.header-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.back-upper {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.back-upper a {
    margin-left: 20px;
}

.title-box {
    /* Vertical */
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.map-title {
    position: relative;
    color: #fff;
    font-size: 48px;
    text-align: center;
    z-index: 1;
    font-family: 'burbank';
    font-weight: lighter;
}

section {
    /* padding: 20px; */
    margin: 20px 0;
}

.description-section, .fun-facts-section, .screenshots-section, .new-features-section {
    /* background-color: #1a1a1d; */
    background-color: #0c0c0c;
    border-radius: 10px;
    padding: 20px;
}

/* .screenshots-section {
    background-color: #1a1a1d;
    border-radius: 10px;
    padding: 20px;
} */

.screenshots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.screenshots img {
    width: 30%;
    border-radius: 10px;
}

.new-ability {
    /* Image of the shop and description on the right */
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* .new-features-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Cover full width */
    /* width: 99%; */
    /* background-color: #1a1a1d; */
/* } */

.new-features-section img {
    width: 50%;
    border-radius: 10px;
}

.new-features-section .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fun-facts-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.fun-facts-section li {
    margin-bottom: 10px;
}

.to-right h3 {
    display: flex;
    justify-content: flex-end;
}

.to-right p {
    text-justify: right;
}

.bottom-buttons {
    display: flex;
    gap: 5px;
    /* Make all elements the same height */
    align-items: stretch;
}