@charset "utf-8";
/* CSS Document */

/*Elements*/

body {
    font-family: "M PLUS Rounded 1c";
    background: #A47612;
}

h2, h3 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    color: antiquewhite;
}

/*Bootstrap 4 Navbar*/

nav {
    background-color: #FF5457;
    width: 80%;
    max-width: 1140px;
    margin: 10px auto;
    border-radius: 10px;
    border-bottom: 2px solid #b23a3c;
}

nav a {
    color: white;
    text-transform: uppercase;
}

nav a:hover {
    color: pink;
}

nav ul li {
    letter-spacing: 3px;
    padding-right: 10px;
}

nav h1 {
    font-weight: 700;
    font-size: 1.25em;
}

.navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*Container*/

.container {
    background: #E7CEA1;
    border: 10px solid #4F2E00;
    width: 80%;
    margin-top: 6rem;
}

/*Support Section*/

.SupportButton {
    margin-bottom: -12px;
}

/*Hero Section*/

.HeroSection {
    background: #feffd7;
    border-bottom: 3px solid #cacc75;
    border-radius: 25px;
}

.HeroImage {
    display: block;
    width: 50%;
    min-width: 240px;
    max-width: 360px;
    margin: auto;
}

/*About Section*/

.AboutSection {
    background: #f1cce9;
    border-bottom: 3px solid #c0a3ba;
    border-radius: 25px;
}

/*Games Section*/

.GamesSection {
    background: #3f2d19;
    border-bottom: 3px solid #211100;
    color: antiquewhite;
    text-align: center;
    border-radius: 25px;
}

.GamesSection p {
    width: 50%;
    margin: auto;
}

.GamesThumbnail {
    display: block;
    margin: auto;
    width: 25%;
    min-width: 100px;
    max-width: 175px;
    border-radius: 15%;

}

/*Footer*/

.Copyright {
    text-align: center;
}

footer a {
  color: antiquewhite;
}

footer a:hover {
  color: lightcoral;
}

/*General Section Style*/

.GeneralSection {
    margin: 10px auto;
    padding: 10px 20px;
}

/*Smoll Bunners*/

@media (max-width: 576px) {
    nav {
    background-color: #FF5457;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    border-bottom: 2px solid #b23a3c;
    }
    
    nav h1 {
    font-weight: 700;
    font-size: 1em;
    }
    
    .container {
    background: #E7CEA1;
    border: 10px solid #4F2E00;
    width: 100%;
    margin-top: 15%;
    }    
    

}

