.hero {
    display: flex;
    flex-direction: column;
    height: 70vh;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-image: url("../imgs/wallpaper.png");
}

.scroll-downs-section {
    display: flex;
    justify-content: center;
}

.scroll-downs {
    width: 34px;
    height: 55px;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid black;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: black;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.groups {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20vh;
}

.group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5vh;
}

.reverse {
    flex-direction: row-reverse;
}

.groups h1 {
    font-size: xxx-large;
    margin-bottom: 10vh;
}

.group img {
    width: 500px;
    border-radius: 20px;
}

.group-description {
    margin-left: 10vw;
    font-size: large
}

.group-description-reverse {
    margin: unset;
    margin-right: 10vw;
}

.group-description h3 {
    font-size: xx-large;
    margin-bottom: 15px;
}

.group-other {
    display: flex;
    width: 80vw;
    flex-direction: column;
    font-size: large;
    margin: 15vh 0;
}

.group-other h3 {
    font-size: xx-large;
    margin-bottom: 15px;
}

.sponsors {
    margin: 16vh 0;
    padding: 2vh;
    display: flex;
    flex-direction: column;
    background-color: #ff5252;
    color: whitesmoke;
    align-items: center;
}

.sponsors h2 {
    margin-bottom: 15px;
}

.sponsors img {
    width: 175px;
    margin: 0 50px;
    filter: brightness(0) invert(1) opacity(75%);
}

.sponsors img:hover {
    filter: brightness(0) invert(1) opacity(100%);
}

@media screen and (max-width: 1200px) {
    .hero {
        font-size: x-large;
        text-align: center;
    }

    .groups h1 {
        text-align: center;
    }

    .group {
        flex-direction: column;
    }

    .group img {
        width: 300px;
    }

    .group-description {
        margin: unset;
        text-align: center;
    }

    .reverse {
        flex-direction: column;
    }
}