:root {
    --main-color: #230022;
    --text-color: rgb(200, 200, 200);
    --call-color: rgb(192, 0, 117);
    --text-max-width: 450px;
}

html {
    image-rendering: pixelated;
    text-rendering: optimizeLegibility;
    shape-rendering: crispEdges;

    font-size: 20px;
    font-family: roboto;
    scroll-behavior: smooth;

    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    display: none;
}


body {
    color: var(--text-color);
    background-color:var(--main-color);
    margin: 0;

    display: flex;
    flex-direction: column;

}

/*HEADER*/
.header {
    letter-spacing: 0.2em;
    font-weight: 300;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 65%);
    z-index: 102;

    max-height: 60px;

    align-items: center;
    justify-content: space-between;
}

.header div {
    align-items: center;
    padding: 0 50px;
}

.header .menu button {
    color: rgb(255, 255, 255);
    background-color: transparent;
    font-weight: 300;
    font-family: roboto;
    font-size: 20px;
    letter-spacing: 0.2em;


    border: none;
    padding: 0 10px;
    cursor: pointer;
}

.header #mobileMenuBtn {
    display: none;
    z-index: 101;
}

.mobileMenu {
    display: none;
}



#speaker {
    position: absolute;
    font-size: 15px;
    z-index: 101;
    color: white;
    background-color: rgb(25, 25, 25);
    padding: 1em;
    border-radius: 8em;
    opacity: 0;
    transition: opacity 1s;
}

.backdrop {
    position: relative;
    justify-content: center;
    align-items: flex-start;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#b1 {
    background-image: url(../assets/media/fireplace.jpg);
    background-attachment: fixed;
    background-blend-mode: hard-light;
    background-color: hsl(0, 0%, 50%);
    transition: background-color 1s;
    min-height: 100vh;
}

#b1[fade=true] {
    background-color: hsl(0, 0%, 15%);
    background-attachment: fixed;
    min-height: 100vh;
}

#b2 {
    /*background-image: url(../assets/media/ShowFoxHouse.png);*/
    z-index: 1;
}

#b3 {
    /*background-image: url(../assets/media/TheMount.png);*/
    background-attachment: fixed;
    z-index: 1;
    height: 100vh;
}


/*LANDING PAGE*/

.landing {
    align-items: center;
}

.landing h1 {
    margin: 0;
    max-width: 660px;
    font-size: 75px;
    font-weight: 100;
    font-family: Jalompo;
    /*THIS IS AN EXAMPLE OF TEXT GRADIENT*/
    background: -webkit-linear-gradient(270deg, #7c2cab, #bca0dc);
    background-clip: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*ENDS HERE*/
}

.landing p {
    margin: -10px 0 10px 0;
    max-width: 509px;
    font-size: 25px;
    
}

.landing button {
    color: var(--text-color);
    border-radius: 15px;
    border: var(--text-color) solid 1px;
    padding: 10px;
    margin: 0 5px;
    font-size: 20px;
    background-color: transparent;
    cursor: pointer;
}


.about {
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap-reverse;
    min-height: 100vh;
}

.about div {
    align-items: center;
    margin: 30px 20px;
}

.about h1 {
    margin: 0;

    font-size: 52px;
    font-family: Jalompo;
    font-weight: 100;
    text-align: center;
}

.about p {
    font-size: 20px;
    font-weight: 300;
    max-width: var(--text-max-width);
}

.btn {
    border: none;
    background-color: transparent;
    font-size: 20px;
    text-align: center;
    text-decoration: solid;
    color: var(--call-color);
    cursor: pointer;
}

.about iframe {
    background-color: lightblue;
    border-radius: 35px;
    height: 429px;
    width: 770px;
    border: none;
}

.about canvas {
    width: 80px;
    margin: 10px 10px;
    transition: all 4s;
}

#staffmembers {
    max-width: 80vw;
    width: 500px;
    overflow: scroll;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 20px;
}

#staffmembers p {
    margin: 0;
    text-align: center;
}

#staffmembers h1 {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: end;
    width: 500px;
    height: 300px;
    font-family: roboto;
    font-weight: 400;
    font-size: 30px;
    border-radius: 20px;

    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: all .5s;
}

#staffmembers:hover h1 {
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
}


.vote {
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.vote div {
    align-items: center;
    justify-content: center;
    max-width: 80vw;
    width: var(--text-max-width);
    border-radius: 30px;
}
.vote h1 {
    margin: 0;

    font-size: 52px;
    font-family: Jalompo;
    font-weight: 100;
    text-align: center;
}
.vote p {
    font-size: 20px;
    font-weight: 300;
    max-width: var(--text-max-width);
}
.vote img{
    width: 100px;
}
.btnCont {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 15px 0;
}
.vote a {
    color: var(--call-color);
    font-size: 14px;
    text-align: center;
    border: solid var(--call-color) 1px;
    border-radius: 10px;
    width: 180px;
    padding: 10px;
    margin: 10px;
    background-color: transparent;
}

.vote button {
    color: var(--call-color);
    font-size: 14px;
    border: solid var(--call-color) 1px;
    border-radius: 10px;
    width: 190px;
    padding: 10px;
    margin: 10px;
    background-color: transparent;
}

.vote a:hover {
    cursor: pointer;
}
.vote a:focus {
    color: rgb(107, 87, 99);
    border: solid rgb(107, 87, 99) 1px;
}


.rules {
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.rules div {
    align-items: center;
    justify-content: center;
    max-width: 80vw;
    width: 600px;
    border-radius: 30px;
}
.rules h1 {
    margin: 0;

    font-size: 52px;
    font-family: Jalompo;
    font-weight: 100;
    text-align: center;
}
.rules p {
    font-size: 17px;
    font-weight: 300;
    max-width: 600px;
}

.map {
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: flex-end;
}
#map {
    border: none;
    width: 100vw;
    height: calc(100vh - 60px);
}


/*FLEX ELEMENTS*/

.fRow {
    display: flex;
    flex-direction: row;
}

.fColumn {
    display: flex;
    flex-direction: column;
}

.vh {
    height: 100vh;
}

.vw {
    width: 100vw;
}

.fixed {
    position: fixed;
}


/*CUSTOM ATTRIBUTES*/

*[bold="true"] {
    color: rgb(255, 255, 255);
    font-weight: 700;
}