
#club_section {
    display: block;
    overflow-x: hidden;
    width: 100%;
    height: auto;
}

#club_section .dynamicText {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 0 25px 25px;
    font-size: 4rem;
    color: var(--text-colour);
}

#club_section .underBlock {
    position: relative;
    width: 75%;
    height: 1px;
    left: 1%;
    bottom: 10%;
    background: var(--theme-colour);
}

#club_content {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

#club_content .club_content_box {
    position: relative;
    display: flex;
    height: auto;
    background: var(--theme-colour);
    border: 1px solid black;
    margin: 25px 0;
    bottom: 0;
    left: 0;
    transition: left 1s, bottom 1s;
    box-shadow: -3px 3px 1px black;
}

#club_content .club_content_box:hover {
    bottom: 1%;
    left: 1%;
}

#club_content .club_content_box .custom {
    padding: 1%;
    width: 60%;
    color: var(--text-colour);
}

#club_content .club_content_box img {
    width: 38%;
    height: 40%;
    margin-top: 1%;
    margin-right: 1%;
}

#club_background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

