.activity {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 25vh;
    gap: 4rem;
}

.activity-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 5%;
}

.activity-intro-title {
    font-size: 60px;
    text-align: center;
}

.activity-intro-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.activity-tabs {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20vh;
}

.activity-tabs-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.activity-tab {
    display: none;
    margin-top: 4rem;
    text-align: center;
}

.activity-tab-active {
    margin-top: 4rem;
}

.activity-vscode-img {
    height: 100%;
    width: 100%;
    margin-bottom: 4rem;
}

@media only screen and (max-width: 600px) {
    .activity-tabs {
        width: 90%;
    }
}