html {
    overscroll-behavior: none;
}

* {
    box-sizing: border-box;
}

.margin {
    margin-top: 10px;
    margin-bottom: 10px
}

h1 {
    font-size: 32px !important;
    word-break: break-all;
    color: black !important;
    margin-bottom: 20px;
}

h3 {
    font-size: 10px;
    color: white;
    /*margin: 0 !important;*/
}

.row {
    display: flex;
    /*flex-wrap: wrap;*/
    flex-flow : row wrap;
    justify-content: center;
    padding: 0 4px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
    padding: 8px;
}

button {
    background: none;
    border: none;
}
a:link {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/* Create four equal columns that sits next to each other */
.column {
    flex: 33%;
    max-width: 33%;
    padding: 0 4px;
}

.column5 {
    flex: 20%;
    max-width:20%;
    padding: 0 4px;
}

.column6 {
    flex: 16%;
    max-width:16%;
    padding: 0 4px;

}

/* Content */
.lobby{
    background-image: linear-gradient(#e4f8fe, #33a2bf);
    padding: 0 20px 0 20px;
    background-repeat: no-repeat;
}

.lobby_item_content {
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
    margin-bottom: 17px;
    border: 3px solid white;
}

.lobby_item_content:hover {
    background-color: #ffffff;
    border: 3px solid #60d2f0;
    transform: scale(1.06);
    text-decoration: none;
}

h3.lobby_item_content_label {
    font-size: 20px;
    color: black;
    margin: 5px !important;
}

.lobby_item_content_browser {
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
    margin-bottom: 17px;
    border: 3px solid white;
}

.lobby_item_content_browser:hover {
    background-color: #ffffff;
    border: 3px solid #60d2f0;
    transform: scale(1.06);
    text-decoration: none;
}

h3.lobby_item_content_label_browser {
    font-size: 16px;
    /*color: #046883;*/
    color: black;
    margin: 5px !important;
}

.imageRounder{
    height: 60%;
    width: 85%;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 0 auto;
}

.browser-game {
    display: inline-table;
    float: left;
   width: 17% !important;

}

.sectionHeader {
    background-color: orange;
    color: white;
    font-size: 20px;
    padding: 5px 5px 5px 20px;
    /*margin-top:10px;*/
    border-radius: 5px 5px 0 0;
}

.stores {
    margin-top: 20px;
}

.store_logo{
    transition: 0.3s;
    float: left;
    margin: 2px;
    padding: 2px;
}

.badgeImage {
    height: 50px;
}

.badgesRow {
    display: block !important;
    width: 70%
}

.store_logo:hover {
    transform: scale(1.06);
}

h3.headerLabel {
    margin: 5px !important;
}

.homeHeroRounder {
    /*height: 100%;*/
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 0px auto;
    padding: 0px !important;
}

.section {
    background-color: white;
    border-radius: 5px;
    margin: 0 0px 20px 0px;
    padding : 0px !important;
}

.playButton {
    background-color: #229dbe;
    color: white;
    font-size: 26px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
}

.homeButton {
    background-color: #229dbe;
    color: white;
    font-size: 26px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
}


.descriptionText {
    color: black !important;
    font-size: 16px;
    display: inline-block;
    text-align: left;
}


/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 0;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 10%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 10px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* FOOTER */

footer {
    background-color: orange;
    color: white;
    padding: 20px;
    margin-top:10px;
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    /*min-height: 100vh;*/
    display: flex;
    align-items: flex-end;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
    border: 1.1px solid white;
    padding: 15px;
    border-radius: 50%;

}
.socials a i{
    font-size: 1.8rem;
    width: 20px;
    transition: color .4s ease;

}
.socials a:hover i{
    color: #25657d;
}

.footer-container {
    padding: 0px !important;
}

.footer-bottom{
    padding-bottom: 10px;
    text-align: center;
}
.footer-bottom p{
    float: left;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    color: #25657d;
}
.footer-bottom p a{
    color:#25657d;
    font-size: 16px;
    text-decoration: none;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}
.footer-menu{
    float: right;

}
.footer-menu ul{
    display: flex;
}
.footer-menu ul li{
    padding-right: 10px;
    display: block;
}
.footer-menu ul li a{
    color: #25657d;
    text-decoration: none;
    font-size: 14px;
}

.footer-menu ul li a:hover{
    color: #25657d;
}

@media (max-width:500px) {
    .footer-menu ul{
        display: flex;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

/* end of FOOTER */

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }

    .descriptionText {
        font-size: 15px;
    }
}

@media screen and (max-width : 990px){
    h3.lobby_item_content_label {
        font-size: 15px;
    }

    .descriptionText {
        font-size: 20px;
    }
}