body {
    background-color: black;
    overflow-x: hidden;
}

.text {
    color: white;
}

.title {
    color: #ffffff;
    font-size: 4vw;
    font-family: Source Code Pro;
    font-weight: 700;
    text-transform: uppercase;
}


.main-container {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;

}

.coverpage {
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: url('https://i.ibb.co/xgbdB9g/coverpage-background.jpg');
    background-size: cover;
    object-fit: cover;
    background-position: center;
}

#header {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 10vh;
    box-sizing: border-box;
    display: flex;
    z-index: 1;
    position: absolute;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0);
}

#header-spark-logo {
    width: 10vh;
    height: 10vh;
    object-fit: contain;
    padding-left: 5vw;
    padding-top: 5vw;
}

.header-socials-icon-group {
    display: flex;
    box-sizing: border-box;
    gap: 20px;
    padding-right: 5vw;
    padding-top: 5vw;
}

.header-socials-icon {
    font-size: 3vw;
    object-fit: contain;
    color: white;
    text-shadow: 0px 0px 10px #ffffff;
    transition: color 0.5s, text-shadow 0.5s;
    cursor: default;
}

.header-socials-icon:hover {
    font-size: 3vw;
    object-fit: contain;
    color: rgb(247, 247, 247);
    text-shadow: 0px 0px 5px #ffffff;
}

.coverpage-container {
    height: 100vh;
    justify-content: end;
    display: flex;
    align-self: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10vh;
}

.coverpage-main-text {
    /* color: linear-gradient(-50deg, rgba(61, 71, 152, 1), rgba(28, 22, 71, 1)); */
    /* background: -webkit-linear-gradient(-80deg, #ac066c 0%, #1c1057 100%); */
    background: -webkit-linear-gradient(-80deg, #ff009d 0%, #2f0cdf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6vw;
    max-width: auto;
    font-style: normal;
    margin-top: 16px;
    text-align: center;
    font-family: "Open Sans";
    font-weight: 700;
    /* text-shadow: 0px 0px 10px #ffffff; */
    margin-bottom: 10px;
    letter-spacing: 0.2em;
}

.coverpage-register-text {
    background: -webkit-linear-gradient(160deg, #e60c92 0%, #6f04e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    justify-content: center;
    color: rgb(221, 221, 221);
    font-size: 2.1vw;
    font-style: normal;
    font-family: "Open Sans";
    font-weight: 400;
    /* text-shadow: 0px 0px 5px #686868; */
    letter-spacing: 0.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition-property: text-shadow, text-decoration, text-decoration-color;
    transition-duration: 0.3s;
}

.coverpage-register-text:hover {
    text-shadow: 0px 0px 10px rgba(172, 6, 108, 0.4);
    text-decoration: underline;
    text-decoration-color: rgba(172, 6, 108, 0.5);
}

.coverpage-register-button {
    /* background-color: #B700FF; */
    border-radius: 11px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 20px;
    font-style: normal;
    font-family: Source Code Pro;
    font-weight: 500;
    border-color: transparent;
    color: white;
    border-width: 1px;
    border-color: white;
    letter-spacing: 5px;
    text-transform: uppercase;
    /* background-image: linear-gradient(150deg, #FF00FF 0%, #140f02 100%); */
    transition: 0.5s;
    /* box-shadow: 0 0 20px #eee; */
    background-size: 200% auto;
}

.coverpage-register-button:hover {
    background-position: right center;
    /* change the direction of the change here */
    border-width: 1px;
    border-color: white;
    color: white;
    box-shadow: 0 0 5px #eee;
    letter-spacing: 7px;
}

.register-button {
    background-image: linear-gradient(to right, #e60c92 0%, #1c1057 51%, #ac066c 100%);
}

.about-section {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: conic-gradient(from 90deg at 40% -25%, #ffd700, #f79d03, #ee6907, #e6390a, #de0d0d, #d61039, #cf1261, #c71585, #cf1261, #d61039, #de0d0d, #ee6907, #f79d03, #ffd700, #ffd700, #ffd700);
    filter: blur(10px);
    transform: translate3d(0px, 0px, -1px);
    clip-path: polygon(-100vmax -100vmax, 100vmax -100vmax, 100vmax 100vmax, -100vmax 100vmax, -100vmax -100vmax, calc(0px - 0px) calc(0px - 0px), calc(0px - 0px) calc(100% - 0px - 0px), calc(100% - 0px - 0px) calc(100% - 0px - 0px), calc(100% - 0px - 0px) calc(0px - 0px), calc(0px - 0px) calc(0px - 0px));
    pointer-events: none;
}

.about-title {
    color: #ffffff;
    font-size: 4vw;
    font-family: Source Code Pro;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    font-style: normal;
    margin-top: 50px;
    margin-left: 50px;
    letter-spacing: 20px;
}

.about-content {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    width: 100%;
    height: auto;
    font-size: 1.7vw;
    text-align: center;
    align-self: center;
    font-style: normal;
    font-family: Source Code Pro;
    font-weight: 600;
    margin-top: 50px;
    padding-left: 70px;
    padding-right: 70px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.event-title {
    color: rgb(255, 255, 255);
    font-size: 4vw;
    align-self: center;
    font-style: normal;
    margin-top: 70px;
    font-family: Source Code Pro;
    font-weight: 700;
    margin-left: 0px;
    margin-bottom: 50px;
    letter-spacing: 20px;
    text-transform: uppercase;
}

.card-column {
    box-sizing: border-box;
    gap: 30px;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
}

.card-row {
    box-sizing: border-box;
    gap: 30px;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    align-items: center;
    justify-content: center;
}

.card-container {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 22%;
    height: auto;
    display: flex;
    position: relative;
    align-self: center;
    transition: 0.3s;
    align-items: center;
    border-style: solid;
    border-color: #261E81;
    border-width: 1.5px;
    border-radius: 15px;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
}

.card-container:hover {
    border-color: #FE4CC3;
}

.card-container:hover .card-event-name {
    text-shadow: 0px 0px 20px white;
}

.card-image {
    box-sizing: border-box;
    width: 100%;
    ;
    height: 28vh;
    object-fit: cover;
    border-radius: 10px;
}

.card-events {
    display: flex;
    align-self: flex-start;
    align-items: center;
    margin-left: 10px;
    flex-direction: column;
    justify-content: center;
}

.card-event-name {
    color: rgb(255, 255, 255);
    font-size: 22px;
    align-self: flex-start;
    font-style: normal;
    margin-top: 22px;
    font-family: Source Code Pro;
    font-weight: 600;
    letter-spacing: 4px;
    transition: text-shadow 0.5s;
}

.sustainable-playground.card-event-name {
    font-size: 18px;
}

.studentrepreneur.card-event-name {
    font-size: 18px;
}

.card-event-generic-name {
    color: #D0D0D0;
    font-size: 20px;
    align-self: flex-start;
    margin-top: 0px;
    font-family: Source Code Pro;
    letter-spacing: 3px;
}

.card-classes,
.card-team-members,
.card-teams-per-school {
    display: flex;
    align-self: flex-start;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.card-classes-label {
    color: #FE4CC3;
    font-size: 15px;
    align-self: flex-start;
    margin-top: 16px;
    font-family: Source Code Pro;
    margin-left: 10px;
    letter-spacing: 2px;
}

.card-team-members-label,
.card-teams-per-school-label {
    color: #FE4CC3;
    font-size: 15px;
    align-self: flex-start;
    margin-top: 4px;
    font-family: Source Code Pro;
    margin-left: 10px;
    letter-spacing: 2px;
}

.card-classes-data,
.card-team-members-data,
.card-teams-per-school-data {
    color: #ffffff;
    font-size: 17px;
    align-self: flex-start;
    margin-top: 2px;
    font-family: Source Code Pro;
    margin-left: 33px;
    letter-spacing: 2px;
}

.card-know-more-button-container {
    box-sizing: border-box;
    width: 100%;
    height: 6.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.card-know-more-button {
    color: #fff;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 11px;
    font-size: 20px;
    font-style: normal;
    font-family: Source Code Pro;
    font-weight: 500;
    border-color: #b700ffd3;
    border-width: 1.5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition-property: color, border-color;
    transform-style: preserve-3d;
    transition-duration: 0.3s;
}

.card-know-more-button:hover {
    color: #b700ffd3;
    width: 100%;
    height: 100%;
    border-radius: 11px;
    font-size: 20px;
    font-style: normal;
    font-family: Source Code Pro;
    font-weight: 500;
    border-color: white;
    border-width: 1.5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    /* background-image: linear-gradient(180deg, rgba(202, 18, 132, 0.2) 0%, rgba(0, 0, 0, 0.9)); */
    background-color: transparent;
    /* background-image: linear-gradient(-50deg, rgba(183, 0, 255, 0.38), rgba(32, 54, 236, 0.34)); */
    box-shadow: 0px 0px 5px 1px rgba(123, 0, 255, 0.7);
}

.brochure-button {
    width: 15vw;
    height: 8vh;
    background-color: black;
    color: white;
    align-self: center;
    border-radius: 15px;
    font-size: 1.4vw;
    font-style: normal;
    font-family: Source Code Pro;
    font-weight: 500;
    border-color: #FE4CC3;
    border-width: 2px;
    /* letter-spacing: 5px; */
    letter-spacing: 0.4vw;
    text-transform: uppercase;
    margin-bottom: 5px;
    position: relative;
    transform-style: preserve-3d;
    transition-duration: 0.3s;
}

.brochure-button:hover {
    border-color: white;
    color: #FE4CC3;
}

.teaser-section {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;

}

.teaser-title {
    color: rgb(255, 255, 255);
    font-size: 4vw;
    align-self: center;
    font-style: normal;
    margin-top: 55px;
    font-family: Source Code Pro;
    font-weight: 700;
    margin-left: 0px;
    margin-bottom: 10px;
    letter-spacing: 20px;
    text-transform: uppercase;
}

.sponsors-section {
    box-sizing: border-box;
    /* gap: 55px; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sponsor-logo-division{
    box-sizing: border-box;
    gap: 10px;
    width: 100%;
    padding-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logo{
    box-sizing: border-box;
    margin-top: 10%;
    margin-bottom: 0%;
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.video {
    margin-bottom: 30px;
    height: 100vh;
    width: 100vw;
}


.team-section {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.team-title-1 {
    color: rgb(255, 255, 255);
    font-size: 2.2vw;
    align-self: center;
    font-style: normal;
    margin-top: 50px;
    text-align: center;
    font-family: Source Code Pro;
    font-weight: 500;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.team-title-2 {
    color: rgb(255, 255, 255);
    font-size: 4vw;
    align-self: center;
    font-style: normal;
    font-family: Source Code Pro;
    font-weight: 700;
    letter-spacing: 21px;
    text-transform: uppercase;
}

.team-card-column {
    box-sizing: border-box;
    gap: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-left: 90px;
    padding-right: 90px;
    flex-direction: column;
    padding-bottom: 70px;
}

.team-card-row {
    box-sizing: border-box;
    gap: 55px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card-container {
    box-sizing: border-box;
    width: 30%;
    height: auto;
    display: flex;
    position: relative;
    align-items: flex-start;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
}

.team-card-image {
    box-sizing: border-box;
    top: 0px;
    left: 0px;
    right: auto;
    width: 100%;
    bottom: auto;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 20px;
}

.team-card-text {
    width: 100%;
    height: 300px;
    display: flex;
    z-index: 1;
    align-self: flex-start;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

.team-card-name {
    color: #ffffff;
    margin-left: 12px;
    margin-right: 12px;
    font-size: 25px;
    align-self: flex-start;
    font-style: normal;
    text-align: left;
    font-family: 'Source Code Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    letter-spacing: 4px;
}

.team-card-position {
    color: #FE4CC3;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 12px;
    font-size: 21px;
    align-self: flex-start;
    text-align: left;
    font-family: 'Source Code Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;

}

.footer {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 16px;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 16px;
}

.footer-top {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    height: 2rem;
    margin-bottom: 16px;
}


.footer-address {
    margin-left: 0px;
    text-align: center;
    color: white;
}

.footer-separator {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 16px;
    align-items: flex-start;
    margin-left: 0px;
    border-color: rgb(49, 49, 49);
    border-style: solid;
    border-width: 1px;
    margin-right: 0px;
    margin-bottom: 16px;
    flex-direction: row;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
}

.footer-bottom {
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.footer-credits {
    color: rgb(255, 255, 255);
    font-size: 0.9em;
}

.footer-socials-container {
    box-sizing: border-box;
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.footer-socials-icon {
    font-size: 2vw;
    object-fit: contain;
    color: white;
    cursor: default;
    transition: text-shadow 0.3s;
}

.footer-socials-icon:hover {
    text-shadow: 0px 0px 5px #ffffffaf;
}

@media(max-width: 479px) {
    .coverpage {
        padding-top: 16px;
        padding-left: 8px;
        padding-right: 8px;
        padding-bottom: 16px;
        box-sizing: border-box;
    }

    #header {
        padding: 8px;
        padding-top: 20px;
    }

    #header-spark-logo {
        width: 15vw;
        height: 15vw;
    }

    .header-socials-icon {
        font-size: 8vw;
    }

    .coverpage-container {
        justify-content: end;
        padding-bottom: 18vh;
    }

    .coverpage-main-text {
        font-size: 12vw;
        max-width: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        letter-spacing: 0.5em;
        color: aqua;
    }

    .coverpage-register-text {
        font-size: 4.5vw;
        margin-bottom: 50px;
    }

    .about-title {
        font-size: 8vw;
        margin-top: 30px;
        letter-spacing: 0.3em;
    }

    .about-content {
        font-size: 3vw;
        margin-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        letter-spacing: 0.1em;
    }

    .event-title {
        font-size: 8vw;
        margin-top: 30px;
        margin-bottom: 20px;
        letter-spacing: 0.3em;
    }

    .card-column {
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .card-container {
        width: 80%;
    }

    .card-image {
        height: 240px;
        padding-top: 2px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-events {
        margin-left: 5px;
        margin-bottom: 0px;
    }

    .card-event-name {
        font-size: 23px;
        text-align: left;
        letter-spacing: 4px;
    }

    .studentrepreneur.card-event-name.card-event-name {
        font-size: 23px;
    }

    .sustainable-playground.card-event-name {
        font-size: 23px;
    }

    .card-event-generic-name {
        font-size: 20px;
    }

    .card-classes {
        margin-top: 3px;
    }

    .card-classes-label {
        font-size: 17px;
        margin-top: 5px;
        margin-left: 5px;
    }

    .card-classes-data,
    .card-team-members-data,
    .card-teams-per-school-data {
        font-size: 19px;
        margin-top: 5px;
        margin-left: 15px;
        letter-spacing: 2px;
    }

    .card-team-members,
    .card-teams-per-school {
        margin-top: 2px;
    }

    .card-team-members-label,
    .card-teams-per-school-label {
        color: rgb(254, 76, 195);
        font-size: 17px;
        margin-top: 5px;
        font-family: Source Code Pro;
        margin-left: 5px;
        letter-spacing: 2px;
    }

    .card-know-more-button-container {
        margin-top: 12px;
        height: 5vh;
    }

    .card-know-more-button {
        font-size: 22px;
        padding-left: 1px;
        padding-right: 1px;
        letter-spacing: 5px;
    }

    .brochure-button {
        width: 50vw;
        height: 8vh;
        font-size: 5.5vw;
    }

    .teaser-title {
        font-size: 8vw;
        letter-spacing: 0.3em;
        margin-top: 50px;
    }

    .video {
        height: 50vh;
    }

    

    .team-title-1 {
        font-size: 5vw;
        text-align: center;
        letter-spacing: 0.3em;
    }

    .team-title-2 {
        font-size: 8vw;
        letter-spacing: 0.5em;
    }

    .team-card-column {
        gap: 25px;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center;
        padding-top: 20px;
        /* overflow-x: hidden; */
    }

    .team-card-row {
        gap: 25px;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        /* overflow-x: hidden; */
    }

    .team-card-container {
        width: 95%;
        height: 75vw;
    }

    .team-card-image {
        width: 100%;
        height: 100%;
    }

    .team-card-text {
        width: 100%;
        height: 80vw;
        justify-content: flex-end;
    }

    .team-card-name {
        font-size: 9vw;
        letter-spacing: 6px;
    }

    .team-card-position {
        font-size: 6vw;
        letter-spacing: 3px;
    }

    .footer {
        padding: 8px;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-address {
        text-justify: center;
    }

    .footer-separator {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer-credits {
        text-align: center;
        margin-bottom: 12px;
    }

    .footer-socials-icon {
        font-size: 6vw;
    }
}


/* tablet breakpoint */
@media(max-width: 820px) and (min-width:600px) {
    .coverpage {
        padding-top: 16px;
        padding-left: 8px;
        padding-right: 8px;
        padding-bottom: 16px;
        box-sizing: border-box;
    }

    #header {
        padding: 8px;
        padding-top: 20px;
    }

    #header-spark-logo {
        width: 15vw;
        height: 15vw;
    }

    .header-socials-icon {
        font-size: 8vw;
    }

    .coverpage-container {
        justify-content: end;
        padding-bottom: 18vh;
    }

    .coverpage-main-text {
        font-size: 10vw;
        max-width: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        letter-spacing: 0.5em;
        color: aqua;
    }

    .coverpage-register-text {
        font-size: 4vw;
        margin-bottom: 50px;
    }

    .coverpage-register-button {
        /* background-color: #B700FF; */
        border-radius: 11px;
        padding: 15px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 35px;
        font-style: normal;
        font-family: Source Code Pro;
        font-weight: 500;
    }

    .about-title {
        font-size: 8vw;
        margin-top: 40px;
        letter-spacing: 0.3em;
    }

    .about-content {
        font-size: 3vw;
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
        letter-spacing: 0.1em;
    }

    .event-title {
        font-size: 8vw;
        margin-top: 40px;
        margin-bottom: 20px;
        letter-spacing: 0.3em;
    }

    .card-column {
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .card-container {
        width: 45%;
    }

    .card-image {
        height: 240px;
        padding-top: 2px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-events {
        margin-left: 5px;
        margin-bottom: 0px;
    }

    .card-event-name {
        font-size: 30px;
        text-align: left;
        letter-spacing: 4px;
    }

    .studentrepreneur.card-event-name.card-event-name {
        font-size: 25px;
    }

    .sustainable-playground.card-event-name {
        font-size: 25px;
    }

    .card-event-generic-name {
        font-size: 22px;
    }

    .card-classes {
        margin-top: 3px;
    }

    .card-classes-label {
        font-size: 20px;
        margin-top: 5px;
        margin-left: 5px;
    }

    .card-classes-data,
    .card-team-members-data,
    .card-teams-per-school-data {
        font-size: 22px;
        margin-top: 5px;
        margin-left: 15px;
        letter-spacing: 2px;
    }

    .card-team-members,
    .card-teams-per-school {
        margin-top: 2px;
    }

    .card-team-members-label,
    .card-teams-per-school-label {
        color: rgb(254, 76, 195);
        font-size: 20px;
        margin-top: 5px;
        font-family: Source Code Pro;
        margin-left: 5px;
        letter-spacing: 2px;
    }

    .card-know-more-button-container {
        margin-top: 12px;
        height: 5vh;
    }

    .card-know-more-button {
        font-size: 24px;
        padding-left: 1px;
        padding-right: 1px;
        letter-spacing: 5px;
    }

    .brochure-button {
        width: 35vw;
        height: 6.5vh;
        font-size: 4vw;
    }

    .teaser-title {
        font-size: 8vw;
        letter-spacing: 0.3em;
        margin-top: 50px;
    }

    .video {
        height: 50vh;
    }

    .team-title-1 {
        font-size: 5vw;
        margin-top: 40px;
        text-align: center;
        letter-spacing: 0.3em;
    }

    .team-title-2 {
        font-size: 8vw;
        letter-spacing: 0.5em;
    }

    .team-card-column {
        gap: 50px;
        align-items: center;
        padding-left: 5px;
        padding-right: 5px;
        justify-content: center;
        padding-top: 30px;
        /* overflow-x: hidden; */
    }

    .team-card-row {
        gap: 50px;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        /* overflow-x: hidden; */
    }

    .team-card-container {
        width: 70%;
        height: 40vh;
    }

    .team-card-image {
        width: 100%;
        height: 100%;
    }

    .team-card-text {
        width: 100%;
        height: 80vw;
        justify-content: flex-end;
        padding: 10px;
    }

    .team-card-name {
        font-size: 6vw;
        letter-spacing: 4px;
    }

    .team-card-position {
        font-size: 5vw;
        letter-spacing: 2px;
    }

    .footer {
        padding: 8px;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-logo{
        height: 5rem ;
    }

    .footer-address {
        text-justify: center;
        font-size: 1.7rem;
    }

    .footer-separator {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer-credits {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 12px;
    }

    .footer-socials-icon {
        font-size: 6vw;
    }
}

@media(max-width: 590px) and (min-width:530px) {
    .coverpage {
        padding-top: 16px;
        padding-left: 8px;
        padding-right: 8px;
        padding-bottom: 16px;
        box-sizing: border-box;
    }

    #header {
        padding: 8px;
        padding-top: 20px;
    }

    #header-spark-logo {
        width: 15vw;
        height: 15vw;
    }

    .header-socials-icon {
        font-size: 8vw;
    }

    .coverpage-container {
        justify-content: end;
        padding-bottom: 18vh;
    }

    .coverpage-main-text {
        font-size: 10vw;
        max-width: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        letter-spacing: 0.5em;
        color: aqua;
    }

    .coverpage-register-text {
        font-size: 4vw;
        margin-bottom: 50px;
    }

    .coverpage-register-button {
        /* background-color: #B700FF; */
        border-radius: 11px;
        padding: 15px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 35px;
        font-style: normal;
        font-family: Source Code Pro;
        font-weight: 500;
    }

    .about-title {
        font-size: 8vw;
        margin-top: 40px;
        letter-spacing: 0.3em;
    }

    .about-content {
        font-size: 3vw;
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
        letter-spacing: 0.1em;
    }

    .event-title {
        font-size: 8vw;
        margin-top: 40px;
        margin-bottom: 20px;
        letter-spacing: 0.3em;
    }

    .card-column {
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .card-container {
        width: 45%;
    }

    .card-image {
        height: 240px;
        padding-top: 2px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-events {
        margin-left: 5px;
        margin-bottom: 0px;
    }

    .card-event-name {
        font-size: 30px;
        text-align: left;
        letter-spacing: 4px;
    }

    .studentrepreneur.card-event-name.card-event-name {
        width: 80%;
        font-size: 23px;
        word-wrap:break-word;
    }

    .sustainable-playground.card-event-name {
        font-size: 25px;
    }

    .card-event-generic-name {
        font-size: 22px;
    }

    .card-classes {
        margin-top: 3px;
    }

    .card-classes-label {
        font-size: 20px;
        margin-top: 5px;
        margin-left: 5px;
    }

    .card-classes-data,
    .card-team-members-data,
    .card-teams-per-school-data {
        font-size: 22px;
        margin-top: 5px;
        margin-left: 15px;
        letter-spacing: 2px;
    }

    .card-team-members,
    .card-teams-per-school {
        margin-top: 2px;
    }

    .card-team-members-label,
    .card-teams-per-school-label {
        color: rgb(254, 76, 195);
        font-size: 20px;
        margin-top: 5px;
        font-family: Source Code Pro;
        margin-left: 5px;
        letter-spacing: 2px;
    }

    .card-know-more-button-container {
        margin-top: 12px;
        height: 5vh;
    }

    .card-know-more-button {
        font-size: 24px;
        padding-left: 1px;
        padding-right: 1px;
        letter-spacing: 5px;
    }

    .brochure-button {
        width: 35vw;
        height: 6.5vh;
        font-size: 4vw;
    }

    .teaser-title {
        font-size: 8vw;
        letter-spacing: 0.3em;
        margin-top: 50px;
    }

    .video {
        height: 50vh;
    }

    .team-title-1 {
        font-size: 5vw;
        margin-top: 40px;
        text-align: center;
        letter-spacing: 0.3em;
    }

    .team-title-2 {
        font-size: 8vw;
        letter-spacing: 0.5em;
    }

    .team-card-column {
        gap: 50px;
        align-items: center;
        padding-left: 5px;
        padding-right: 5px;
        justify-content: center;
        padding-top: 30px;
        /* overflow-x: hidden; */
    }

    .team-card-row {
        gap: 50px;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        /* overflow-x: hidden; */
    }

    .team-card-container {
        width: 70%;
        height: 40vh;
    }

    .team-card-image {
        width: 100%;
        height: 100%;
    }

    .team-card-text {
        width: 100%;
        height: 80vw;
        justify-content: flex-end;
        padding: 10px;
    }

    .team-card-name {
        font-size: 6vw;
        letter-spacing: 4px;
    }

    .team-card-position {
        font-size: 5vw;
        letter-spacing: 2px;
    }

    .footer {
        padding: 8px;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-logo{
        height: 5rem ;
    }

    .footer-address {
        text-justify: center;
        font-size: 1.7rem;
    }

    .footer-separator {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer-credits {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 12px;
    }

    .footer-socials-icon {
        font-size: 6vw;
    }
}

/* animation */

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: transform 1s, opacity 1s, filter 1s, border-color 0.5s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.card-container:nth-child(1) {
    transition: transform 0.4s 200ms, opacity 0.4s 200ms, filter 0.4s 200ms, border-color 0.5s;
    /* transition-property: transform, opacity, filter;
    transition-delay: 200ms;
    transition-duration: 0.4s; */
}

.card-container:nth-child(2) {
    transition: transform 0.6s 400ms, opacity 0.6s 400ms, filter 0.6s 400ms, border-color 0.5s;
    /* transition-property: transform, opacity, filter;
    transition-delay: 400ms;
    transition-duration: 0.6s; */
}

.card-container:nth-child(3) {
    transition: transform 0.8s 600ms, opacity 0.8s 600ms, filter 0.8s 600ms, border-color 0.5s;
    /* transition-property: transform, opacity, filter;
    transition-delay: 600ms;
    transition-duration: 0.8s; */
}

.card-container:nth-child(4) {
    transition: transform 1s 800ms, opacity 1s 800ms, filter 1s 800ms, border-color 0.5s;
    /* transition-property: transform, opacity, filter;
    transition-delay: 800ms;
    transition-duration: 1s; */
}

.hidden.team-card-container {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show.team-card-container {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.team-card-container:nth-child(1) {
    transition-delay: 200ms;
    transition-duration: 0.4s;
}

.team-card-container:nth-child(2) {
    transition-delay: 400ms;
    transition-duration: 0.6s;
}

.team-card-container:nth-child(3) {
    transition-delay: 600ms;
    transition-duration: 0.8s;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #830053;
}

::-webkit-scrollbar-thumb:hover {
    background: #aa006c;
}