/* Scrollbar  */
body::-webkit-scrollbar {
    width: 0.3em;
    overflow: scroll;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px whitesmoke;
    box-shadow: inset 0 0 6px whitesmoke;
}
 
body::-webkit-scrollbar-thumb {
  background-color: black;
  border: .2px solid white;
  border-radius: 1px;
}


/*Sizing & Transition*/
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

body {
    background-color: black;
    color: whitesmoke;
    font-family: "Montserrat", cursive;
}

button {
    color: none;
}

a {
    color: whitesmoke;
    text-decoration: none;
}

a:hover {
    font-weight: bold;
    cursor: pointer;
}

li {
    list-style-type: none;
    font-weight: bold;
    font-size: 1em;
}

h1,
h3 {
    text-align: center;
}

h4 {
    font-weight: bold;
}

p {
    font-size: 18px;
}

button {
    font-family: 'Bungee', cursive;
    font-size: 16px;
    border: none;
}

header {
    position: relative;
    width: 90%;
    height: auto;
    max-width: 960px;
    margin: 0 auto;
    margin-top: 15px;
    padding: 0 20px;
    box-sizing: border-box;
}

#hideMenu {
    margin-bottom: -40px;
    z-index: 1;
    text-align: center;
}

#navBar {
    display: none;
    z-index: -1;
}

.imgContent {
    margin: 10px;
    margin-bottom: 100px;
    border: 1px solid whitesmoke;
    height: 500px;
}

.title {
    font-size: 60px;
    font-family: 'Bungee Shade', sans-serif;
    margin-top: 10px;
    margin-bottom: 30px;
}

#mic {
    margin-top: 5px;
}

.container {
    background-color: black;
    max-width: 875px;
}

.row {
    text-align: center;
}

.content {
    border-bottom: whitesmoke solid 1px;
    margin: 5rem auto;
    min-height: 250px;
}

.duv {
    position: fixed;
    top: 5px;
    right: 5px;
}

.contactLogo {
    font-family: 'Bungee Shade', cursive;
    width: 200px;
    top: 5px;
    left: 5px;
    font-size: 75px;
    margin: 0 auto;
}

.logo {
    font-family: 'Bungee Shade', cursive;
    text-align: center;
    position: fixed;
    width: 200px;
    top: 5px;
    left: 5px;
    font-size: 75px;
}

a:hover{
    font-weight: 100;
    color: whitesmoke;
}

#smallLogo {
    display: none;
}

.initial {
    font-family: 'Bungee Shade', cursive;
    font-size: 75px;
}

#bulb {
    position: fixed;
    top: 6px;
    right: 0;
    width: 2.4rem;
}

/*Contact Form Modal*/

#contact {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 1;
}

#formModal {
    position: fixed;
    top: 25%;
    left: 50%;
    margin-top: -125px;
    margin-left: -400px;
    height: 500px;
    width: 800px;
    background-color: black;
    border: 1px solid whitesmoke;
    color: whitesmoke;
}

#form {
    width: 50%;
    float: left;
    padding-left: 20px;
}

#contact li {
    list-style-type: none;
    padding-top: 10px;
    padding-left: 10px;
}

.social {
    text-align: center;
    margin-bottom: -15px;
    padding-top: 15px;
}

.social li {
    font-family: 'Bungee', cursive;
    display: inline;
}

input {
    background-color: whitesmoke;
    color: black;
}

textarea {
    background-color: whitesmoke;
    color: black;
    height: 140px;
}

.logoBox {
    width: 50%;
    float: right;
}

.contactLogo {
    font-size: 90px;
}

/*End of Contact Modal*/

/*Success/Fail Modals*/
.narrowView {
    display: none;
}

#success {
    display: none;
    position: fixed;
    width: 70%;
    left: 15%;
    background-color: hsl(171, 100%, 41%);
    z-index: 1;
}

#success p {
    font-weight: bold;
    text-align: center;
    margin: 10px 5px;
    color: whitesmoke;
    font-size: 20px;
}

#fail {
    display: none;
    position: fixed;
    left: 15%;
    width: 70%;
    background-color: hsl(348, 100%, 61%);
    z-index: 2;
}

#fail p {
    font-weight: bold;
    text-align: center;
    margin: 10px 5px;
    color: whitesmoke;
    font-size: 20px;
}

.close {
    text-align: right;
}

.close:hover {
    cursor: pointer;
}

/*End Success/Fail Modals*/

@media only screen and (max-width: 1310px) {
    .logo {
        position: relative;
        margin: 0 auto;
    }

    .container {
        width: 95%;
    }
}

@media only screen and (max-width: 890px) {
    #success {
        width: 100%;
        left: 0;
    }

    #fail {
        width: 100%;
        left: 0;
    }
}

@media only screen and (max-width: 790px) {
    header {
        position: relative;
        margin: 0 auto;
    }

    #lightSwitch {
        display: none;
    }

    #bulb {
        top: 10px;
        right: 10px;
    }

    .logoBox {
        display: none;
    }

    #formModal {
        position: fixed;
        top: 0;
        left: 0;
        margin: 0 auto;
        height: 100%;
        width: 100%;
        border: none;
    }

    #form {
        width: 100%;
        margin: 0 auto;
        float: none;
        padding-left: 20px;
    }

    .formButtons{
        display: inline;
    }

    #success p {
        font-size: 15px;
    }

    #fail p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 590px) {
    .close {
        margin: 0;
        padding: 0;
    }
}

@media only screen and (max-width: 590px) {
    .leftAnchor {
        padding-left: 40px;
    }

    .narrowView {
        display: flex;
    }

    .wideView {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    .leftAnchor {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 315px) {
    .leftAnchor {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 215px) {
    .leftAnchor {
        padding-left: 10px;
    }
}