* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: normal;
}

html, body {
    background-color: #020326;
    overflow-x: hidden;
}


body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    filter: contrast(140%) brightness(100%);
    background: 
      radial-gradient(circle at 50% 50%, #6b7ac7, #432c66),
      url("data:image/svg+xml,%3Csvg viewBox='0 0 235 235' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.41' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

#hero-text{
    font-size: 96px;
}

#hero-date{
    padding: 10px;
    background-color: #ffffff; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: #432c66; 
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 10px;
}

#hero-logo{
    width: 600px;
    height: 480px;
}


p {
    font-size: 1rem;
    color:#fff;
    line-height: 150%;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color:#432c66;
}

h2 {
    color: #fff;
    font-size: 1.2rem;
}

img {
    border-radius: 15px;
}

/* Link colours */
a:link {
    color: #eedd81;
}

a:visited {
    color: #432c66;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
        margin-left: 20px;
        margin-right: 20px;
        
    }

    p {
        font-size: 0.8rem;
    }

    #hero-logo{
        width: 300px;
        height: 220px;
    }
}

#page__blurb {
    width: 60%;
    padding: 1.2rem 0;
}

@media screen and (max-width: 720px) {
    #page__blurb {
        width: 100%;
        padding: 1.2rem 0;
    }
}

/* NAV BAR CSS */
.navbar {
    background: #432c66;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.navbar__img--container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar__logo {
    cursor: pointer;
    min-width: 112px;
    height: 20%;
    width: 15%;
}

.fa-gem {
    margin-right: 0.5rem
}

.navbar__menu {
   display: flex;
   align-items: center;
   list-style: none;
   text-align: center; 
}

.navbar__item {
    height: 80px;
    font-size: 1rem;
    font-weight: 500;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding-left: 3rem;
    height: 100%;
}

.navbar__links:link {
    color: #fff;
}
.navbar__links:visited {
    color: #fff;
}

.navbar__links:hover {
    color: #eedd81;
    transition: all 0.3s ease; 
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 90vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #432c66;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 90vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 0.5rem;
    
    }

    .navbar__toggle {
        margin-top: 0.3rem;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%; 
        height: 4.5rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 480px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 100px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        margin-right: 3px;
    }

    #navbar__logo {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding-left: 0.5rem;
        height: 10%;
        width: 7%;
    }

    .navbar__menu.active {
        background: #432c66;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: auto;
        font-size: 1.6rem;
    }

    #mobile-menu {
        position: absolute;
        padding-right: 0.5rem;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }
}


/* Footer Section CSS */
.footer {
    margin-top: auto;
    background-color: #432c66;
}
.footer__container {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__logo {
    display: flex;
    justify-content: center;
    width: fit-content;
}

#footer__img {
    text-align: center;
    width: 105px;
    height: 50px;
    margin: 1rem;
}

@media screen and (max-width: 480px) {
    .footer__container {
        padding: 0.5rem 0;
    }

    #footer__img {
        text-align: center;
        width: 60px;
        height: 30px;
        margin: 1rem;
        
    }
}

/* PROFILE CSS */
.profile__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.profile__name--container {
    grid-area: name;
}

.profile__blurb--container {
    grid-area: blurb;
}

.profile__container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "name name"
    "img blurb";
    gap: 0.5rem;
}

.profile__img--container {
    grid-area: img;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile__img--container img {
    width: 100%;
}


/* PROFILE MOBILE RESPONSIVE */
@media screen and (max-width: 1050px) {
    .profile__container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "img name"
        "blurb blurb";
        gap: 1rem;
    }

    #profile__name {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 650px) {
    .profile__content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .profile__container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "name name"
        "img blurb";
        gap: 0.9rem;
    }
}

@media screen and (max-width: 440px) {
    .profile__content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .profile__container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "img name"
        "blurb blurb";
        gap: 1rem;
    }

    #profile__name {
        font-size: 1rem;
    }
}


.hero {
    /* Sizing */
    width: 100vw;
    height: 100vh;
    
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: center;
    color: white;
    
    /* Background styles */
    background-image: linear-gradient(rgba(28, 25, 25, 0.5),rgba(12, 12, 12, 0.804)), url('images/tc23-attendees.JPG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero h1 {
    /* Text styles */
    font-size: 5em;
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5);
}

.main__btn {
    font-size: 1rem;
    background-color: #432c66;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 15px;
    margin-top: 1rem;
    /* cursor: pointer;
    position: relative; */
    transition: all 0 0.35s;
    outline: none;
    margin-bottom: 100px;
}

/* .main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

.main__btn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #210d3f;
    transition: all 0.35s;
    border-radius: 15px;
}

.main__btn:hover {
    color: #fff;
}

.main__btn:hover:after {
    width: 100%;
} */



/* Mobile Responsive */
@media screen and (max-width: 960px) {
    .main__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: flex-start;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    .hero h1{
        font-size: 4em;
    }

    .main__content {
        text-align: center;
        height: auto;
        margin: 1rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin-top: 1rem;
    }

    #main__img {
        height: 80%;
        width: 90%;
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .main__container {
        padding: 0 30px;
    }

    .hero h1{
        font-size: 3em;
    }

    .main__content {
        margin-bottom: 1rem;
    }

    #main__logo {
        width: 100%;
        margin-bottom: 1.5rem;
        min-width: 0px;
    }

    .main__btn {
        padding: 8px 24px;
        margin-top: 1rem;
    }

    .main__btn a {
        position: relative;
        z-index: 2;
        color: #fff;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .main__content h2 {
        color: #fff;
        font-size: 0.85rem;
    }
}

/* Info Section CSS */
.info {
    padding-top: 5rem;
    padding-bottom: 7rem;
}

.info__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.info__txt--container {
    padding: 0 0.5rem;
}

.info__txt--container h1{
    margin-bottom: 1.5rem;
}

.info__img--container {
    text-align: center;
}

/* Mobile Responsive */
@media screen and (max-width: 960px) {
    .info {
        height: auto;
    }

    .info__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: flex-start;
        width: 100%;
        margin: 0 auto;
        height: auto;
        padding: 0 6rem;
        gap: 3rem;
    }

    /* To make it go text, info, text, info */
    .info__container div:nth-child(1) { order: 2; }
    .info__container div:nth-child(2) { order: 1; }
    .info__container div:nth-child(3) { order: 3; }
    .info__container div:nth-child(4) { order: 4; }

    #info__img {
        height: 80%;
        width: 90%;
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .info__container {
        padding: 0 30px;
        gap: 1rem
    }

    .info__txt--container h1{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .info__txt--container p{
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}


/* EVENT SCHEDULE PAGE CSS*/
.schedule {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-bottom: 7rem;
}


.schedule__container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.schedule h1 {
    padding-top: 3rem;
}


.event__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
}

.event__container {
    width: 60%;
    height: auto;
    border-bottom: 2px solid #432c66;
    padding: 0.7rem 0;
}

.event__container p {
    padding: 0.2rem 0;
}

#event__name {
    font-weight: bold;
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .schedule {
        padding: 0 25px;
        padding-bottom: 7rem;
    }

    .schedule__container {
        padding: 0 20px;
        padding-bottom: 7rem;
    }

    .event__container {
        width: 60%;
        border-bottom: 2px solid #432c66;
        padding: 0.3rem 0;
    }

    .event__container p {
        padding: 0.2rem 0;
    }
}


/* WORKSHOP PAGE SECTION CSS */


.workshops {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.single__workshop--container {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    border-bottom: 2px solid #432c66;
    padding: 4rem 0;
}

.single__workshop--container h2 {
    font-size: x-large; 
    font-weight: 800;
}

.workshops h1 {
    padding-top: 3rem;
}
.workshops__container h1 {
    padding-top: 3rem;
}

.workshop__info--container {
    display: flex;
    flex-direction: row;
}

.workshop__text--container {
    width: 50%;
    padding-right: 3rem;
}

#workshop__blurb {
    padding-top: 1rem;
}

.workshop__img--container {
    width: 50%;
}

#workshop__img {
    min-width: 80%;
}

.workshops img {
    width: 100%;
}

/* Workshop Mobile Responsive */
@media screen and (max-width: 1000px) {
    /*.single__workshop--container {
        padding: 2rem 0;
        row-gap: 2rem;
    }*/

    /*.workshops__container h1 {
        padding: 1rem 0;
    }
    */

    .workshop__content {
        display: flex;
        flex-direction: column;
    }

    .workshop__info--container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .workshop__text--container {
        width: 100%;
        padding-right: 0;
    }
    
    #workshop__blurb {
        padding-top: 1rem;
    }
    
    .workshop__img--container {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
   

    .workshops {
        padding: 0 25px;
        padding-bottom: 7rem;
    }

    
}


/* SPEAKER PAGE CSS */
.speakers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-bottom: 7rem;
}

.speaker__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.speakers__container {
    border-bottom: 2px solid #432c66;
    padding-bottom: 4rem;
    padding-top: 3rem;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speakers__container #speaker__type {
    font-size: 1.8rem;
}

.speakers .profile__container {
    padding-top: 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "name name"
    "img blurb";
    gap: 1rem;
}

.speakers h1 {
    padding-top: 3rem;
}


/* .speakers #profile__img {
    width: 100%;
} */

.speakers #profile__role {
    font-weight: 300;
   
}

/* SPEAKERS MOBILE RESPONSIVE */
@media screen and (max-width: 960px) {
    .speakers__container {
        padding: 2rem 0;
    }

    .speakers .profile__container {
        padding-top: 1rem;
    }
}

@media screen and (max-width: 670px) {
    .speakers .profile__container {
        padding-top: 2rem;

        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "img name"
        "blurb blurb";
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .speakers {
        padding: 0 20px;
        padding-bottom: 7rem;
    }

    .speakers #speaker__type{
        font-size: 1.5rem;
    }

    .speakers #profile__role {
        font-size: 0.8rem;
    }

    .speakers #profile__name {
        font-size: 1.2rem;
        margin-left: 0;
    }
}


/* SPONSORS PAGE CSS */
.sponsors {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-bottom: 7rem;
}

.sponsors h1 {
    padding-top: 3rem;
}

.sponsors__tier--container {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    border-bottom: 2px solid #432c66;
}

.sponsors img {
    width: 800px;
    height: 1200px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    
}

.sponsors__tier--container h2 {
    color: #432c66;
}

.company__container {
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
    /* border-bottom: 2px solid #432c66; */
    gap: 3rem;
}

.company__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.company__logo {
    display: flex;
    justify-content: center;
    align-self: center;
}

.company__logo img {
    width: 100%;
}

/* SPONSORS MOBILE RESPONSIVE */
@media screen and (max-width: 720px) {
    .company__content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .company__logo img {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .sponsors {
        padding: 0 25px;
        padding-bottom: 7rem;
    }
}


/* FAQ PAGE SECTION */
.faq {
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 7rem;
}

.faq h1 {
    padding-top: 3rem;
}

.faq__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: auto;
}

.faq__container {
    width: 80%;
    height: auto;
    border-bottom: 2px solid #432c66;
    padding: 1.6rem 0;
}

#faq__question {
    font-weight: bold;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
}

#faq__additional--info {
    padding-top: 2rem;
}


/* FAQ MOBILE RESPONSIVE */
@media screen and (max-width: 670px) {
    .faq__container {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .faq {
        padding: 0 20px;
        padding-bottom: 7rem;
    }

    #faq__question {
        font-weight: bold;
        font-size: 1rem;
        padding: 0.5rem 0;
    }
}


/* SFU WICS PAGE CSS */
.sfuwics {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-bottom: 7rem;
}

#profile__img{
    height: 300px;
    width: 220px;
}

#profile__name{
    font-size:x-large;
}

.sfuwics #page__blurb {
    padding: 0.5rem 0;
}

.sfuwics .profile__content {
    padding-top: 2rem;
}

.committee__container {
    padding-top: 2rem;
}

.sfuwics h1 {
    padding-top: 3rem;
}

.wics__header {
    grid-area: header;
}

.wics__blurb {
    grid-area: blurb;
}

.wics__logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wics__logo img {
    width: 80%;
}

.wics__info--container {
    padding-top: 7rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "header header"
    "blurb logo";
    gap: 0.5rem;
}

#logistics-coordinator{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 220px; 
}

#communication-coordinator{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 280px; 
}

#web-developer{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 180px; 
}

#recruiting-coordinator{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 220px; 
}

#merch{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 100px; 
}

#visual-design{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 270px; 
}

#treasurer{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 120px; 
}

#sponsorships-coordinator{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 250px; 
}

#co-chair{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 120px; 

}

#assistant-professor{
    margin: 0.2rem;
    display: inline-block;
    padding: 5px;
    background-color: #a7b5fe8f; /* Background color */
    border-radius: 25px;    /* Rounding the corners */
    color: white;           /* Text color */
    font-size: 16px;        /* Font size */
    text-align: center;     /* Center the text */
    width: 420px; 

}

@media screen and (max-width: 750px) {
    #profile__role{
        margin: 0.2rem;
    }
    .wics__info--container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .wics__logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 1rem;

    }

    .wics__logo img {
        width: 70%;
        min-width: 150px;
    }


}

@media screen and (max-width: 480px) {
    #profile__role{
        margin: 0.2rem;
    }
    .sfuwics {
        padding: 0 25px;
        padding-bottom: 7rem;
    }

    .profile__container {
        
        gap: 1rem;
    }

    #profile__img{
        height: 180px;
        width: 130px;
        
    }

    #profile__name{
        font-size:large;
    }

    #co-chair{
        width: 100px;
        font-size: small;
    }

    #sponsorships-coordinator{
        width: 120px;
        font-size: small;
    }

    #recruiting-coordinator{
        width: 120px;
        font-size: small;
    }

    #logistics-coordinator{
        width: 120px;
        font-size: small;
    }

    #treasurer{
        width: 100px;
        font-size: small;
    }

    #visual-design{
        width: 140px;
        font-size: small;
    }

    #merch{
        width: 100px;
        font-size: small;
    }

    #communication-coordinator{
        width: 145px;
        font-size: small;
    }

    #web-developer{
        width: 120px;
        font-size: small;
    }

    #assistant-professor{
        width: 130px;
        font-size: small;
    }

    

}

