/*
 * Globals
 */
*, *:before, *:after{
    box-sizing: border-box;
}

/*
 * Base structure
 */
html,
body {
    font-size: 16px;
    height: 100%;
    background-color: rgb(32, 31, 31);
}

body {
    /* box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5); */
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

li{
    text-align: left;
}


/* Links/Actions */
a,
a:focus,
a:hover {
    color: #fff;
}

.snakeColor{
    color: rgb(145, 223, 117);
}


/* Custom button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none; /* Prevent inheritance from `body` */
    background-color: #fff;
    border: .05rem solid #fff;
}

.btn {
    color: rgb(145, 223, 117);
}

.snakeButton{
    background-color: rgb(145, 223, 117);
    border-radius: .3rem;
    color: rgb(16,16,16)
}

/*
 * Header
 */
.masthead {
    margin-bottom: 2rem;
}

.masthead-brand {
    margin-bottom: 0;
    
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}

@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }
    .nav-masthead {
        float: right;
    }
}



/*
 * Cover
 */
.cover {
    padding: 0 1.5rem;
}
.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}

.cover-container {
    max-width: 45rem;
}

.lead {
    font-size: 3rem;
    font-weight: 600;
}

.jumbotron2 {
    background-image: url('../images/Logo-Global-Snake3.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0.3rem;
    padding: 2rem 1rem;
    margin-bottom: 2rem;    
}

@media (min-width: 576px) {
    .jumbotron2 {
    padding: 4rem 2rem;
    }
}

.jumbotron2-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.hero-img{
    background-image: url('../images/globe.jpeg');
    background-position: center;
    background-size: cover;
    border-radius: 0.3rem;
    display: flex;
    height: 400px;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}


/* Main */

.match-list{
    background-color: rgb(32, 31, 31);
    border-radius: .3rem;
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
    color: white;
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.match-list > div:hover{
    background-color:rgb(145, 223, 117);
    color: black;
    cursor: pointer;
    border-radius:5px;
    /* text-align: left; */
    text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
}

.modal-header{
    background-color: rgb(32, 31, 31);
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5)
}
.modal-body{
    color: rgb(16,16,16);
    text-align: right;
}

.hide{
    display: none;
}

.toast{
    max-height: 110px;
}

/* .toast-header{
    background-color: rgb(20,37,19)
} */

.toast-body{
    color: #333;
}

/*
 * Footer
 */
.mastfoot {
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

