@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&display=swap");
:root {
    --main-color: #60ac46;
    --alt-color: #8cc047;
    --grey: lightslategrey;
    --bk-green-light: #8ec045;
    --bk-green-dark: #5fab47;
    --bk-orange-light: #fd8848;
    --bk-orange-dark: #db6d3e;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: white;
    background-image: url("merged-bg.png");
}

#container {
    max-width: 1200px;
    margin: 0 auto;
}

#top {
    position: absolute;
    top: 0;
    margin: 30px;
    z-index: 9;
}

#top img {
    width: 80px;
    height: auto;
}

body,
code,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    margin: 0;
}

#hero {
    font-size: 24px;
    color: white;
    background: url('kitty.jpg'), var(--grey);
    background-size: cover;
    background-blend-mode: multiply;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}

h1 {
    font-size: 10rem;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    line-height: 8rem;
}

.strap {
    font-size: 2em;
    font-weight: bold;
    color: #0000;
    -webkit-text-stroke: 1.2px white;
    text-align: center;
    background: var(--alt-color);
    padding: 10px;
    max-width: 50%;
    margin-bottom: 30px;
}

#intro {
    background: white;
    padding: 40px;   
}

#intro:after {
    background: white;
    height: 100px;
    margin-top: 20px;
    width: 600px;
    content: "";
    position: absolute;
    right: calc((100% - 1200px) / 2);
}

.sportsbar {
    background: var(--grey);
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

a img {
    width: 80px;
    height: auto;
    transition: all ease-in 0.3s;
}

a:hover img {
    transform: scale(1.7);
    transition: all ease-in 0.3s;
}

.down {
    position: absolute;
    width: 100px;
    right: 15%;
    bottom: 30px;
    transition: all ease-in 0.2s;
}

.down circle,
.down .arrow-down--arrow {
    transition: all ease-in 0.2s;
}

.arrow-down--arrow {
    fill: var(--main-color);
    transition: all ease-in 0.2s;
}

.down:hover circle {
    fill: var(--main-color);
    transition: all ease-in 0.2s;
}

.down:hover .arrow-down--arrow {
    fill: white;
    transition: all ease-in 0.2s;
}

h2 {
    color: white;
    -webkit-text-stroke: 1.2px #000;
    font-size: 3em;
}

#faq {
    background: var(--main-color);
    color: white;
    padding: 40px;
}

#leaderboard {
    background: var(--grey);
    text-align: left;
    padding-left: 30px;
}

#leaderboard h2 {
    color: var(--grey);
    -webkit-text-stroke: 1.2px white;
}

.boardrow {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    /* width: 70%; */
    padding: 20px;
    color: white;
    /* font-size: 1.5em; */
    font-weight: bold;
}

.header {
    color: var(--alt-color);
}

#faq h2 {
    color: white;
    -webkit-text-stroke: 1.2px white;
}

button.question {
    width: 100%;
}

.question {
    display: flex;
    justify-content: space-between;
    padding: 5px 10%;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
}

.question:last-child {
    border-bottom: 0px;
}

.question .number {
    font-weight: 900;
    font-size: 20px;
    padding-right: 10px;
}

.question .active {
    transition: all ease 0.5s;
}

.question .plus {
    font-size: 3em;
    transition: all ease 0.5s;
}

/* .question:hover .plus,
.question .active .plus, */
.rotate-me {
    transform: rotate(45deg);
    transition: all ease 0.5s;
}

.panel {
    padding: 0 20%;
    max-height: 0px;
    overflow: hidden;
    transition: all ease 1s;
}

button {
    background: inherit;
    border: none;
}

#mission {
    background: white;
    padding: 40px;
    position: relative;
}

#mission:before {
    background: white;
    height: 60px;
    width: 20%;
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery img {
    width: 150px;
    margin: 20px;
    height: 100px;
    object-fit: contain;
}


@media only screen and (max-width: 1200px) {
    
    #intro:after {
        width: 50%;
        right: 0;
    }
}

@media only screen and (max-width: 600px) {
    #sidebar {
        display: none;
    }
    #leaderboard {
        overflow: hidden;
        padding: 20px;
    }
    #intro:after {
        width: 0%;
    }
    #faq {
        padding: 10px;
        padding-bottom: 50px;
    }
    .gallery img {
        height: auto;
        margin: 10px;
        width: 120px;
    }
    .down {
        right: 5%;
        bottom: 10px;
    }
    
    .strap {
        font-size: 1.2em;
        max-width: 80%;
    }
    
    #top {
        display: none;
    }

}

.cta-container{
    background-color: #fff;
    text-align: center;
    padding: 20px;
}
.cta-button{
    font-weight: bold;
    display: block;
    background: var(--bk-green-light);
    color: #fff;
    margin: 20px auto;
    font-size: 24px;
    padding: 10px 8px;
    max-width: 400px;
    border-radius: 10px;
    border: none;
    text-align: center;
}