@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

body {
    background-color: #010203;
    font-family: "Montserrat", sans-serif;
    color: #FFFFFF;
    font-weight:400;
    line-height: 1.5;
    }
    



/* header*/

.logo {
    width: 60%;
    margin-top: 2%;
    padding: 3% 20%;
}


/* headings and text */

h1 {
    font-family: Montserrat, sans-serif;
    color: #ff0415;
    font-size: 35px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 45px;
    margin-bottom: 2%;
}

h2 {
    font-family: Montserrat, sans-serif;
    color: #65ff00;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 1px;
    margin-top: 2%;
    margin-bottom: 2%;
}

.score {
    font-weight: 600;
    font-size: 20px;

}

.score-red {
    font-size: 20px;
    color: #ff0415;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: #ffdd00;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
  }

  .message {
    color: #65ff00;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}

.card-title {
    font-weight: 600;
    text-align: center;
}

/* Structural CSS */

.divider {
    height: 10px;
    background-image: url("../images/stripe.jpg");
    background-repeat: repeat-x;
  }

.content-container {
    max-width: 60%;
    margin: 0% 20% 0% 20%;
}

.flex-container-2col {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    columns: 2;
    column-gap: 12%;
  }

.left-box {
    width: 44%;
    float: left;
    padding-bottom: 3%;
}

.right-box {
    width: 44%;
    float: right;  
    padding-top: 4%;
    padding-bottom: 3%;
}

.game-left-box {
    width: 44%;
    float: left;
    margin-top: -2%;
}

.game-right-box {
    width: 44%;
    float: right; 
    margin-top: -2%;
}

.button-container {
    max-width: 100%;
    margin-top: 2%;
    text-align: center;
}
.w100 {
    width: 100%
}

.btn {
    display: inline-block;
    width: 10%;
    padding: 0 2%

}

.score-area {
    font-size: 15px;
}

.bottom-image {
    overflow: hidden;
}


/* footer */

footer {
    border-top: #ff0415 solid 10px;
    background-color: #ff0415;
    height: 150px;
    margin-bottom: 0;
    position: static;
}


.social-networks {
    text-align: center;

}

.social-networks > li {
    display: inline;
}

.social-networks i {
    font-size: 160%;
    margin: 1%;
    padding: 1%;
    color: #ffffff;
}

.social-networks i:hover {
   font-size: 160%;
   margin: 1%;
   padding: 1%;
   color: #010203;
}


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

        .logo {
            width: 90%;
            margin-top: 2%;
            padding: 3% 5%;
        }
        

    h1 {
        font-size: 27px;
        line-height: normal;
    }

    h2 {
        font-size: 16px;
    }

    .left-box {
        width: 100%;
    }
    
    .right-box {
        width: 100%;
    }

    .game-left-box {
        width: 44%;
        float: left;
    }
    
    .game-right-box {
        width: 44%;
        float: right;  
    }

    .btn {
        display: inline-block;
        width: 27%;
        padding: 2% 2%
    
    }

    .score {
        font-weight: 600;
        font-size: 14px;
    
    }
    .score-red {
        font-size: 14px;
        color: #ff0415;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .content-container {
        max-width: 90%;
        margin: 0% 5% 0% 5%;
    }

    
    
}

