main {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 2fr 1fr;
}

.flex-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 3rem;
}

.clubs {
    font: inherit;
    width: 100%;
    background-color: lightgreen;
    border: 5px solid yellow;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

h2,
.club-search-title {
    margin: 2rem;
    text-align: center;
    font-size: 3rem;
    color: yellow;
    margin-bottom: 1rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
}

main img {
    margin-top: 4rem;
    justify-self: center;
}

.box {
    background-color: lightgreen;
    color: black;
    border: 5px solid yellow;
    border-radius: 10px;
    padding: 1rem;
    hyphens: auto;
    word-spacing: 2px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.club-link {
    display: block;
    color: black;
}

.club-link:hover {
    text-decoration: underline;
    color: inherit;
}
