body,
html {
    height: 100%;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    position: fixed;
    top: 1%;
    left: 1%;
}

.centerimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

.centertext {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 50px;
    color: #fdfcfa;
}

.subtitle {
    font-family: Helvetica, sans-serif;
    font-size: 25px;
    color: #fdfcfa;
    opacity: 80%;
}

.paragtitle {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #fdfcfa;
}

.container {
    float: left;
    padding-top: 2%;
    padding-left: 5%;
    width: 50%;
}

.figcaption1 {
    color: #fdfcfa;
    opacity: 50%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.figcaption1:hover {
    opacity: 100%;
    background-color: black;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.figcaption2 {
    color: #050505;
    opacity: 50%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.figcaption2:hover {
    opacity: 100%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.thought {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 70px;
    color: #fdfcfa;
    text-shadow: 2px 2px black;
}

.link {
    color: #EC2127;
    font-size: 20px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.link:hover {
    color: #EC2127;
    text-decoration: none;
    text-shadow: -0.3px -0.3px 0 #EC2127, 0.3px -0.3px 0 #EC2127, -0.3px 0.3px 0 #EC2127, 0.3px 0.3px 0 #EC2127;
    font-size: 23px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.youtube {
    color: #FF0000;
    font-size: 25px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.youtube:hover {
    color: #FF0000;
    text-decoration: none;
    text-shadow: -0.3px -0.3px 0 #FF0000, 0.3px -0.3px 0 #FF0000, -0.3px 0.3px 0 #FF0000, 0.3px 0.3px 0 #FF0000;
    font-size: 28px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.twitch {
    color: #6441a5;
    font-size: 25px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.twitch:hover {
    color: #6441a5;
    text-decoration: none;
    text-shadow: -0.3px -0.3px 0 #6441a5, 0.3px -0.3px 0 #6441a5, -0.3px 0.3px 0 #6441a5, 0.3px 0.3px 0 #6441a5;
    font-size: 28px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.blacklink {
    color: #050505;
    font-weight: bold;
    font-size: 25px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.blacklink:hover {
    color: #050505;
    text-decoration: none;
    text-shadow: -0.3px -0.3px 0 #050505, 0.3px -0.3px 0 #050505, -0.3px 0.3px 0 #050505, 0.3px 0.3px 0 #050505;
    font-size: 28px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.pointer {
    cursor: pointer;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 10px;
}

.grid-item {
    padding: 20px;
    font-size: 30px;
    text-align: center;
}


/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */

.flip-box {
    background-color: transparent;
    width: 200px;
    height: 400px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}


/* This container is needed to position the front and back side */

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}


/* Do an horizontal flip when you move the mouse over the flip box container */

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}


/* Position the front and back side */

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}


/* Style the front side */

.flip-box-front {
    background-color: #bbb;
    color: black;
}


/* Style the back side */

.flip-box-back {
    background-image: linear-gradient(to bottom, #4a1e2d, #900637);
    border-radius: 20px;
    color: white;
    transform: rotateY(180deg);
}

.cardInfo {
    line-height: normal;
    font-size: 15px;
    text-align: left;
    padding-left: 5%;
}

.cardTitle {
    font-size: 20px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.cardTitle:hover {
    text-shadow: -0.3px -0.3px 0 #fdfcfa, 0.3px -0.3px 0 #fdfcfa, -0.3px 0.3px 0 #fdfcfa, 0.3px 0.3px 0 #fdfcfa;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

a {
    color: #fdfcfa;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

a:hover {
    text-decoration: none;
    color: #fdfcfa;
    text-shadow: -0.3px -0.3px 0 #fdfcfa, 0.3px -0.3px 0 #fdfcfa, -0.3px 0.3px 0 #fdfcfa, 0.3px 0.3px 0 #fdfcfa;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

footer {
    background-color: rgba(25, 23, 22, 0.75);
    padding-top: 5%;
    padding-bottom: 5%;
}

.fa {
    padding: 20px;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
    background: #fdfcfa;
    color: rgba(25, 23, 22);
}

.fa-facebook:hover {
    background: #3B5998;
    color: white;
}

.fa-twitch:hover {
    background: #6441a5;
    color: white;
}

.fa-twitter:hover {
    background: #55ACEE;
    color: white;
}

.fa-linkedin:hover {
    background: #007bb5;
    color: white;
}

.fa-youtube:hover {
    background: #bb0000;
    color: white;
}

.fa-instagram:hover {
    background: #E1306C;
    color: white;
}

.fa-pinterest:hover {
    background: #cb2027;
    color: white;
}

.fa-reddit:hover {
    background: #ff5700;
    color: white;
}


/*

    <div style="height: 55%; background-color:black">
        <div class="container">
            <img id="TwitchYoutube" src="images/TwitchYoutube.jpg" style="margin-top: 6%; margin-left: 6%;" width="480px" height="270px" alt="TwitchYoutube">
        </div>
        <div class="container">
            <p id="streamInfo" class="paragtitle ">STREAM INFORMATION</p>
            <p id="streamInfoexp" class="subtitle" style="line-height: 50px;">
                Critical Role airs live on Thursdays at 7pm Pacific time at <a class="twitch" href="https://www.twitch.tv/criticalrole">twitch.tv/criticalrole</a>
                <br> If you miss it, episodes upload to their <a class="youtube" href="https://www.youtube.com/criticalrole">YouTube channel</a> on Mondays at 10:00 PM Pacific time.
                <br> For broadcast times in your time zone, check out
                <a class="whitelink" href="http://www.wheniscriticalrole.com/">wheniscriticalrole.com</a>.
            </p>
        </div>
    </div>



    <div id="mapCarousel" class="carousel slide parallax" data-ride="carousel" style="background-image: url( 'images/exandria2.jpg');">
        <button type="button" class="close" aria-label="Close" style="transform: scale(2); margin-right: 20%;" onclick="hideCarousel('mapCarousel')">
            <span aria-hidden=" true ">&times;</span>
        </button>
        <div class="carousel-inner parallax " role="listbox ">
            <div class="carousel-item active ">
                <div class="d-flex align-items-center justify-content-center min-vh-100 ">
                    <img class="d-block " src="images/mapWildemount.jpg " alt="Wildemount " width="750 " height="750 ">
                </div>
            </div>
        </div>
    </div>

*/