@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*
.fixme {
    background-color: red;
}
*/
* {
    margin: 0;
    padding: 0;
    /*border: solid 2px yellow;*/
}

.grid {
    grid-template-rows: auto 1fr;
    /*Trang told me how about this, it's to get my content to align correctly in grid rows*/
}

body {
    font-family: "Roboto", sans-serif; /*This makes ALL the font inside the HTML body Roboto*/
    max-width: 1440px; /*Makes maximum width 1440px FOR ALL CONTENT IN VIEWPORT*/
    margin: 0 auto; /*This is how I ceneter all the content*/
}

nav {
    /*font-size: 0;*/
    place-content: center;
    /*
    margin: 0;
    padding: 0;
    */
    font-size: 0; /*This is how you make the 20% nav li line up perfectly*/
}

/*
nav ul {
    background-color: #989898;
}
*/

nav li {
    width: 20%;
    /*background-color: brown;*/
    /*margin: 0;*/
}

nav a {
    font-weight: 400;
    /*background-color: burlywood;*/
}

.hero {
    background: url(../img/wire-heroBackground.png) center center no-repeat;
    background-size: cover;
}

img {
    max-width: 100%;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 500;
}

.nobul {
    list-style-type: none;
}

footer {
    background: #999;
    /*background-color: crimson;*/
    font-size: 0;
    text-align: center;
    height: 100px;
    place-content: center;
}

/*
footer ul {
    background-color: brown;
}
*/

footer li {
    /*background-color: burlywood;*/
    display: inline-block;
    /*width: 10%;*/
}

footer a {
    /*background-color: aqua;*/
    text-decoration: none;
    font-weight: 400;
    padding: 10px;
    display: inline-block;
    font-size: 12px;
}

footer a:hover {
    color: #fff;
    background: #333;
}

ul {
    list-style-type: none;
}

/*Below 601px width - typically mobile*/
@media only screen and (max-width: 600px) {
    .logo {
        grid-column-end: span 11;
        margin: 10px;
    }

    .grid {
        grid-gap: 10px;
        /*DELETE THIS AT END, YOU DON'T NEED IT-------------------------------------------------------------*/
    }

    nav {
        height: 48px;
        /*background-color: aqua;*/
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        padding: 10px;
    }

    h1 {
        font-size: 26px;
        padding-top: 20px;
    }

    .hero p {
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        /*default font size is 16 which is why REM 16 works. 3x16 = 48*/
        padding-bottom: 15px;
    }

    .heroimg {
        display: none;
    }

    .x2para {
        margin-top: 180px;
        margin-bottom: 120px;
        padding: 0 10px;
    }

    h2 {
        font-size: 20px;
    }

    .smx2para {
        grid-column-end: span 12;
        font-size: 1rem;
        font-weight: 400;
        line-height: 2rem;
        padding: 0 0 60px 0;
    }

    #imgtriohome {
        padding-bottom: 60px;
        grid-gap: 0;
        place-content: center;
        align-content: center;
    }

    .imghome {
        margin: 0 auto;
    }

    h3 {
        font-size: 20px;
        font-weight: 400;
        padding: 0 0 15px 0;
    }

    .leadership {
        padding: 0 10px 50px 10px;
    }

    .leadership p {
        line-height: 24px;
    }

    /*
    .x3Persona {
        padding: 0 0 80px 15px;
    }
    */

    h4 {
        font-size: 16px;
        font-weight: 400;
        padding: 20px 10px;
    }

    .personapara {
        padding: 10px 10px 100px 10px;
        font-size: 16px;
        font-weight: 300;
        line-height: 32px;
    }

    .club {
        padding: 100px 0 100px 0;
    }

    .club h2 {
        padding: 0 10px 15px 10px;
    }

    .club p {
        padding: 0 10px 20px 10px;
    }

    .calendar {
        padding: 0 0 100px 0;
    }

    .event {
        padding: 0 10px 160px 10px;
    }

    .event ul {
        line-height: 32px;
        padding: 10px 0 30px 0;
        list-style-type: none;
    }

    p {
        line-height: 32px;
    }

    .pastevent {
        padding: 0 0 20px 10px;
    }

    .x3event {
        padding: 0 0 180px 0;
    }

    .x3event p {
        padding: 0 10px 80px;
        font-weight: 300;
    }

    .prevguest {
        padding: 0 10px;
    }

    .padres {
        padding: 150px 0 0 0;
    }

    .lgbtqresource {
        margin-bottom: 100px;
    }

    .lgbtqresource h2 {
        font-size: 20px;
        font-weight: 500;
        padding: 0 10px 100px;
    }

    .lgbtqresource h3 {
        font-size: 20px;
        font-weight: 400;
        padding: 0 10px 15px;
    }

    .lgbtqresource li {
        font-size: 16px;
        line-height: 32px;
        padding: 0 10px;
    }

    .padme {
        padding: 0 0 100px 0;
    }

    .spaceup {
        margin-top: 150px;
        /*--------------------------------------------fix me*/
    }

    .allyresource h2 {
        padding: 0 0 0 10px;
    }

    .allyresource h3 {
        font-size: 20px;
        font-weight: 400;
        padding: 60px 10px 10px 10px;
    }

    .definition {
        padding: 20px 10px !important;
    }

    .allyresource p {
        padding: 10px;
        line-height: 35px;
    }

    .allyspace {
        margin: 0 0 60px 0;
    }

    .allyresource li {
        padding: 10px;
    }
}

/*Above 601px width - typically tablet*/
@media only screen and (min-width: 601px) {
    .logo {
        grid-column-end: span 9;
        margin: 10px 15px;
    }

    .grid {
        grid-gap: 15px;
    }

    nav {
        height: 48px;
        /*background-color: aqua;*/
    }

    nav a {
        font-size: 16px;
    }

    .hero {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
        padding-top: 20px;
    }

    .hero p {
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        /*default font size is 16 which is why REM 16 works. 3x16 = 48*/
        padding-bottom: 10px;
    }

    .heroimg {
        margin: auto auto;
        padding-bottom: 30px;
    }

    .x2para {
        margin-top: 120px;
        margin-bottom: 120px;
        padding: 0 15px;
    }

    h2 {
        font-size: 24px;
    }

    .mdx2para {
        grid-column-end: span 9;
        font-size: 1rem;
        font-weight: 400;
        line-height: 2rem;
    }

    #imgtriohome {
        padding-bottom: 80px;
        grid-gap: 0;
    }

    h3 {
        font-size: 20px;
        font-weight: 400;
        padding: 0 0 10px 0;
    }

    .leadership {
        padding: 0 15px 40px 15px;
        text-align: center;
    }

    .leadership p {
        line-height: 30px;
    }

    .leaderpic {
        padding: 0 0 20px 0;
    }

    h4 {
        font-size: 16px;
        font-weight: 300;
        /*text-align: center;*/
        padding: 0 15px;
    }

    .x3Persona {
        padding: 0 0 120px 0;
    }

    .personapara {
        padding: 10px 15px 0 15px;
        font-size: 16px;
        font-weight: 300;
        line-height: 32px;
    }

    #herospecial {
        padding: 10% 0 0 0;
    }

    .club {
        padding: 100px 0 100px 0;
    }

    .club h2 {
        padding: 0 15px 15px 15px;
    }

    .club p {
        padding: 0 15px 20px 15px;
    }

    .calendar {
        padding: 0 0 120px 0;
    }

    .event {
        padding: 0 15px 120px 15px;
    }

    .event ul {
        font-size: 16px;
        line-height: 32px;
        padding: 10px 0 20px 0;
        list-style-type: none;
    }

    .event p {
        max-width: 70%;
    }

    p {
        font-size: 16px;
        line-height: 32px;
    }

    .pastevent {
        padding: 0 0 20px 15px;
    }

    .x3event {
        padding: 0 0 100px 0;
    }

    .x3event h4 {
        text-align: left;
        font-weight: 400;
        padding: 15px;
    }

    .x3event p {
        padding: 0 15px;
        font-weight: 300;
    }

    .prevguest {
        padding: 0 15px;
    }

    .padres {
        padding: 100px 0 0 0;
    }

    .lgbtqresource {
        margin-bottom: 50px;
    }

    .lgbtqresource h2 {
        padding: 0 0 0 15px;
    }

    .lgbtqresource h3 {
        font-size: 20px;
        font-weight: 400;
        padding: 0 0 0 15px;
    }

    .lgbtqresource li {
        font-size: 16px;
        line-height: 32px;
        padding: 0 0 0 15px;
    }

    .mdres {
        grid-column-end: span 12;
    }

    .allyresource h2 {
        padding: 0 0 0 15px;
    }

    .allyresource h3 {
        font-size: 20px;
        font-weight: 500;
        padding: 30px 0 0 15px;
    }

    .allyresource p {
        padding: 10px 15px;
        line-height: 35px;
    }

    .definition {
        font-size: 16px;
        line-height: 32px;
        padding: 20px !important;
    }

    .spaceup {
        margin-top: 150px;
        /*---------------------------------fix me*/
    }

    .allyspace {
        margin: 0 0 60px 0;
    }

    .allyresource li {
        padding: 10px 15px;
    }

    .allyup {
        padding: 100px 0 0 0;
    }
}

/*Above 1025px width - typically desktop*/
@media only screen and (min-width: 1025px) {
    .logo {
        grid-column-end: span 5;
        margin: 10px 20px;
    }

    .grid {
        grid-gap: 20px;
    }

    nav {
        height: 72px;
        /*background-color: aqua;*/
    }

    nav a {
        font-size: 20px;
    }

    .hero {
        padding: 20px;
    }

    h1 {
        font-size: 3rem;
        padding-top: 40px;
    }

    .hero p {
        font-size: 2rem;
        font-weight: 400;
        line-height: 3rem;
        /*default font size is 16 which is why REM 16 works. 3x16 = 48*/
        padding-bottom: 40px;
    }

    .heroimg {
        margin: auto auto;
    }

    .x2para {
        margin-top: 160px;
        margin-bottom: 120px;
        padding: 0 20px;
    }

    h2 {
        font-size: 36px;
    }

    .colx2para {
        grid-column-end: span 11;
        font-size: 24px;
        font-weight: 400;
        line-height: 35px;
    }

    .leadership {
        text-align: center;
        padding: 0 0 30px 0;
    }

    .leadership p {
        /*font-size: 20px;*/
        line-height: 30px;
    }

    h3 {
        font-size: 32px;
        font-weight: 400;
        padding: 0 0 10px 0;
    }

    .x3Persona {
        padding: 0 0 120px 0;
    }

    #imgtriohome {
        padding-bottom: 130px;
        grid-gap: 20px;
    }

    h4 {
        font-size: 24px;
        font-weight: 400;
        padding: 0 20px;
    }

    .leaderpic {
        padding: 0 0 40px 0;
    }

    /*
    .txtcenter {
        text-align: center;
    }
    */

    .personapara {
        padding: 10px 20px 0 20px;
        font-size: 20px;
        font-weight: 300;
        line-height: 35px;
    }

    #herospecial {
        padding: 5% 0 0 0;
    }

    .club {
        padding: 100px 0 160px 0;
    }

    .club h2 {
        padding: 0 20px 15px 20px;
    }

    .club p {
        padding: 0 20px 20px 20px;
        /*font-size: 20px;*/
    }

    .calendar {
        padding: 0 0 160px 0;
    }

    .event {
        padding: 0 0 160px 20px;
    }

    .event ul {
        font-size: 20px;
        line-height: 35px;
        padding: 10px 0 25px 0;
        list-style-type: none;
    }

    .event p {
        max-width: 100%;
    }

    p {
        font-size: 20px;
        line-height: 35px;
    }

    .pastevent {
        padding: 0 0 20px 20px;
    }

    .x3event {
        padding: 0 0 160px 0;
    }

    .x3event h4 {
        text-align: left;
        font-size: 20px;
        font-weight: 500;
        padding: 20px;
    }

    .x3event p {
        padding: 0 20px;
        font-weight: 300;
    }

    .prevguest {
        padding: 10px 20px;
    }

    .padres {
        padding: 200px 0 0 0;
    }

    .lgbtqresource {
        margin-bottom: 100px;
    }

    .lgbtqresource h2 {
        padding: 0;
    }

    .lgbtqresource h3 {
        font-size: 24px;
        font-weight: 500;
        padding: 0;
    }

    .lgbtqresource li {
        font-size: 20px;
        line-height: 35px;
        padding: 0;
    }

    .colres {
        grid-column-end: span 10;
    }

    .allyresource h3 {
        font-size: 24px;
        font-weight: 500;
        padding: 30px 0 0 20px;
    }

    .allyresource p {
        padding: 20px;
    }

    .definition {
        font-size: 20px;
        line-height: 35px;
        padding: 0 0 20px 0;
    }
}
