#around {
    width: 100%;
    display: grid;
    justify-content: center;
}

#content {
    max-width: 60em;
}

#buttons {
    text-align: left;
    padding: 10px;
    justify-content: space-between;
    display: flex;
}

#wall {
    background: var(--dark);
    border-radius: 15px;
    padding: 5px 20px;
    justify-self: center;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

#wall p {
    text-align: left;
}

#wall h1 {
    text-shadow: 10px 10px 3px var(--background-color);
    margin-top: 30px;
    margin-bottom: 5px;
}

#title {
    font-size: 400%;
    text-align: center;
    /*margin-bottom: 0;*/
    text-shadow: 10px 10px 3px var(--background-color);
}

#info {
    display: flex;
    margin: 0 20px;
    justify-content: center;
}

#info>p {
    padding: 0 10px;
}

img {
    border-radius: 10px;
    margin: 10px;
}

#titleholder {
    background: linear-gradient(var(--background-color), var(--dark));
    width: 100%;
    padding: 10px 0;
    border-radius: 0 0 4em 4em;
}