/********** derekoneill.ca **********/

body, html {
    height: 100%;
    font-family: 'Roboto Condensed', sans-serif;
}

@media  (max-width: 576px) {
    #contact .g-recaptcha {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: top left;
        -webkit-transform-origin: top left;
    }
}

@media  (max-width: 768px) {
    #games .game-download {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


/* NAV BAR */

.navbar {
    background-color: rgba(10,10,10,0.75);
    border-bottom: 1px solid #dedede;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
}

.navbar .navbar-nav .nav-link {
    color: #d9d9d9;
}

.navbar .navbar-nav .nav-link:hover {
    color: #ffffff;
}

.navbar-toggler-icon {
    color: #ffffff;
}


/* HEADER */

#top {
    background: #222222 url(../img/tile.png) repeat;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
}

#top .header-panel {
    background-color: rgba(17,17,17,0.5);
    padding: 2rem 1rem;
    border-radius: 20px;
}

#top .header-title {
    font-size: 5em;
	text-transform: uppercase;
    font-weight: bold;
}

#top .header-subtitle {
    font-size: 2.5em;
	text-transform: uppercase;
    font-weight: bold;
}


/* GAMES */

#games {
    padding: 5rem 0;
}

#games h2 {
    font-weight: bold;
    text-transform: uppercase;
}

#games h4 {
    font-weight: bold;
    text-transform: uppercase;
}

#games .games-subheader {
    padding-top: 2.5rem;
}

#games .card {
    margin: 0.5rem 0;
}

#games .game-img {
    position: relative;
}

#games .game-img .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    background-image: url(../img/eye.png);
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
}

#games .game-img .img-overlay:hover {
    opacity: 1;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

#games .game-modal-cover {
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 10px;
}

#games .game-modal-info {
    background-color: #333333;
    border-radius: 10px;
    padding: 0.6rem;
}

#games .game-modal-info p {
    margin: 0;
    color: white;
}

#games .game-modal-body {
    padding: 0.5rem;
}

#games .game-download {
    width: 100%;
}

#MTV {
	padding-left: 70px;
}


/* CONTACT */

#contact {
    padding: 5rem 0;
    background-color: #f4f4f4;
}

#contact h2 {
    font-weight: bold;
    text-transform: uppercase;
}

#contact .fab {
    font-size: 1.5em;
    color: #111111;
    border: 2px solid #111111;
    width: 60px;
    height: 60px;
    border-radius: 20%;
    text-align: center;
    padding: 25% 0;
    margin-top: 10px;
}

#contact .fab:hover {
    color: #ffffff;
    background: #111111;
}


#contact .contact_required {
	color: #FF9900;
}

#contact .status {
    display: none;
}

#contact .g-recaptcha {
	margin: 0.5rem 0;
}

#contact .input_required {
	border: #FF9900 1px solid;
}

#contact .contact-button {
    padding: 0.5rem;
}


/* FOOTER */

#footer {
    padding: 2rem 0;
    background-color: #111111;
    color: #ffffff;
}

#footer a {
    color: #ffffff;
}

#footer .fab, #footer .fas {
    padding: 0 5px;
}