body {
    background-color: var(--secondary-background-color);
}
.all-content {
    display: block;
    width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.all-content-title {
    font-weight: bold;
    font-size: xx-large;
    color: var(--accent-green);
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}
.all-content-title h2 {
    text-align: center;
}
.all-content-image {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}
.all-content-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.all-content-box {
    border-radius: 20px;
    background-color: var(--main-background-color);
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 30px;
}
.all-content-links {
    font-weight: bold;
    font-size: larger;
    margin: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    cursor: pointer;
}
.all-content-link-back {
    margin-left: 10%;
    margin-right: auto;
}
.all-content-link-next {
    margin-left: auto;
    margin-right: 10%;
}
.all-content-box-header {
    color: var(--accent-green);
}
.loaded {
    opacity: 1;
}
@media screen and (max-width: 700px) {
    .all-content {
        width: 100%;
    }
}