/* 
1. Global
2. Colors
3. Header
4. Landing page
5. Game page 
6. Footer
*/

/* 1. Global */

/* google fonts setup */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Russo+One&display=swap');

/* set to page default */
* {
    margin: 0;
    padding: 0;
    border: none;
}

/* global styles */

body {
    font-family: 'Russo One', sans-serif;
    min-height: 100vh;
    background-image: url("../assets/image/background-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    z-index: -2;
}

.overlay {
    background-color: rgba(240,240,243, 0.7);
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: -1;
}

h1,
h2,
h3 {
    font-family: 'Russo One', sans-serif;
}

/* 1. Colors */
.yellow {
    background-color: rgb(245, 195, 97);
}

.orange {
    background-color: rgb(228, 130, 93);
}

.red {
    background-color: rgb(147, 28, 24);
}

.green {
    background-color: rgb(95, 199, 135);
}

.blue {
    background-color: rgb(89, 163, 190);
}

.purple {
    background-color: rgb(94, 48, 173);
}

.pink {
    background-color: rgb(236, 100, 132);
}

.teal {
    background-color: rgb(56, 118, 139);
}

/* 2. Header */

.black {
    background-color: rgb(34, 34, 34);
}

.navbar-dark .navbar-nav .nav-link {
    /* color: rgb(89, 163, 190); */
    color: rgb(120, 165, 165);
}

/* 3. Landing page */

.welcome {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-btn {
    border-radius: 50px;
    padding: 8px 25px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
    background: #fc4a1a;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f7b733, #fc4a1a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f7b733, #fc4a1a);
    border: 1px solid #eee;
}

.main-btn a {
    color:rgb(34, 34, 34)
}

.main-btn:hover {
    background: rgb(244, 165, 7);
    color: #fff;
}

.main-btn:active {
    background: rgb(95, 199, 135);
    color: #fff;
}


/* 4. Game page */

.highlight {
    transform: scale(1.2);
}

.key {
    height: 200px;
    width: 50px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* 5. Footer */

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding-left: 1em;
    font-size: 0.9em;
    color: #f5f5f5;
}

.footer-sm {
    visibility: hidden;
}

.authors img {
    height: 18px;
    margin: 0 2px;
    border-radius: 50%;
}

.footer a {
    color: #f5f5f5;
    font-weight: 100;
}


/* Media queries */

@media screen and (max-width: 620px) {
    .footer-lg {
        visibility: hidden;
    }

    .footer-sm {
        visibility: visible;
        height: 100px;
        font-size: 0.8em;
        margin-top: -40px;
        line-height: 0.5em;
    }
}

@media screen and (max-width: 475px) {

    .footer-sm {
        margin-top: -80px;
    }
}

@media screen and (max-width: 410px) {

    .key {
        height: 150px;
        width: 40px;
    }
}

@media screen and (max-width: 350px) {

    .footer-sm {
        margin-top: -80px;
    }
}

@media screen and (max-width: 350px) {

    .footer img {
        display: none;
    }

    .key {
        height: 130px;
        width: 38px;
        margin: 2px !important;
    }
}

@media screen and (max-width: 350px) {

    .footer img {
        display: none;
    }

    .key {
        height: 130px;
        width: 35px;
        margin: 2px !important;
    }
}