::selection{
    background: #A80C00;
    color: #EEEEEE;
}
::-moz-selection {
    background: #A80C00;
    color: #EEEEEE;
}

body {
    background: url('../src/Wallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
}
body#page-not-found {
    background: url('../src/404-wallpaper.jpg') no-repeat center center fixed; 
}

p {
    font-family: 'Montserrat', sans-serif;
}

strong {
    color: #A80C00;
}

.social-media {
    z-index: 9001; /* It's over 9000!!! */
    position: fixed;
    top: 100px;
    display: block;
}
.social-media i {
    padding: 5px 0;
    margin: 5px 0;
    width: 60px;
    text-align: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    transition: width .5s, color .5s, background-color .5s, border-radius .5s, border .5s;
}
.social-media a:hover { text-decoration: none; }
.social-media-small {
    margin-top: -60px;
    position: fixed;
    top: 100vh;
    height: 60px;
    width: 100vw;
    background-color: #1D1D1D;
    padding: 15px 0;
}
.social-media-small a {
    width: auto;
    display: inline;
    margin: 0 20px;
}
.social-media-small i { color: #9D9D9D; }
.social-media-small i:hover { color: #fff; }
.social-media-small a:hover { text-decoration: none; }

#youtube i {
    color: #fff;
    background: #E62117;
    box-shadow: 0 0 10px #E62117;
}
#twitter i {
    color: #fff;
    background: #55ACEE;
    box-shadow: 0 0 10px #55ACEE;
}
#googleplus i {
    color: #fff;
    background: #DD4E42;
    box-shadow: 0 0 10px #DD4E42;
}
#twitch i {
    color: #fff;
    background: #6441A5;
    box-shadow: 0 0 10px #6441A5;
}

#youtube:hover i {
    color: #E62117;
    background: #fff;
    width: 100px;
}
#twitter:hover i {
    color: #55ACEE;
    background: #fff;
    width: 100px;
}
#googleplus:hover i {
    color: #DD4E42;
    background: #fff;
    width: 100px;
}
#twitch:hover i {
    color: #6441A5;
    background: #fff;
    width: 100px;
}

.navbar {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #1D1D1D;
    border: none;
    border-radius: 0;
}
nav a {
    color: #C8C8C8;
    cursor: pointer;
}

#intro {
    padding: 10% 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 24px;
    height: 100vh;
}
#intro2 {
    padding: 10% 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 24px;
    height: 60vh;
}
#intro strong, #intro2 strong {
    color: #FFFFFF;
    font-style: normal;
    font-size: 68px;
    text-transform: uppercase;
    font-weight: 700;
}
#intro .row .col-sm-12 {
    padding: 0;
}

.special-button {
    background: #36B3A8;
    color: #fff;
    padding: 1em 1.75em;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    font-style: normal;
    line-height: 1em;
    text-transform: uppercase;
    box-shadow: 0 0 20px #000;
    transition: background .5s, color .5s, border-radius .5s;
}
.special-button:focus, .special-button:active { box-shadow: 0 0 10px #000; }
.special-button:hover {
    background: #199F95;
    color: #fff;
    border-radius: 5px;
}

.txt-wrap {
    padding: 93px 0;
    background: #fff;
    width: 60%;
    box-shadow: 0 0 50px #000;
    border-radius: 5px;
}
hr {
    border-color: #CCC;
}
blockquote {
    border-left-color: #CCC;
}
.person {
    border: 10px solid transparent;
    border-radius: 50px;
    margin-bottom: 25px;
    width: 80%;
    height: 80%;
    opacity: 1;
}
.person:hover {
    border-color: #f1f1f1;
}

.modal-header, h4, .close {
    background-color: #333;
    color: #fff !important;
    text-align: center;
    font-size: 30px;
}

.modal-header, .modal-body {
    padding: 20px 50px;
}
.form-control {
    margin-bottom: 10px;
}
textarea {
    resize: none;
}
button[id="modal-toggle"] {
    width: 200px;
    margin-top: 50px;
}

@media screen and (min-width: 768px) {      /* Big Screens */
    .social-media {
        display: initial;
    }
    .social-media-small {
        display: none;
    }
}
@media screen and (max-width: 767px) {      /* Small Screens */
    .social-media {
        display: none;
    }
    .social-media-small {
        display: initial;
    }
    #intro, #intro2 {
        font-size: 20px;
        padding: 20% 0;
    }
    #intro strong, #intro2 strong {
        font-size: 30px;
    }
    .txt-wrap {
        padding: 50px;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }
}