@import url("style.css");

.about-heading {
    margin: 2vw;
    color: var(--secondary-color);
    text-align: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    border-left: 1px solid black;
    padding: 0 min(5vw, 70px);

}

.about-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about-club-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: min(5vw, 70px);
}

.about-club-item {
    box-sizing: border-box;
    margin: min(5vw, 70px);
    width: 50%;
}

iframe {
    width: 50%;
    zoom: 0.5;

}

@media only screen and (max-width: 768px) {
    .about-container {
        width: 100%;
    }

    .about-club-container {
        flex-direction: column;
        width: 100%;
    }

    .about-club-item {
        width: 90%;
        margin: 0;
    }

    iframe {
        width: 100%;
        height: 100vh;

    }
}