html {
    font-size: 16px;
    font-family: 'Merriweather Sans', sans-serif;
}
body {
    background-color: rgb(225, 215, 202);
}

/*-----'WELCOME' banner-----*/
.main-heading-container {
    width: 100%;
    margin: auto;
    font-size: 3rem
}

#main-heading {
    color:black;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Catamaran', sans-serif;
}

/*-------secret message section-------*/

.box-container {
    display: flex;
    justify-content: space-around;
    align-content: center;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    padding: 5%, 5%, 10%;
    box-sizing: border-box;
    background-image: url(../images/secret.jpg);
    background-position: center;
    background-repeat:no-repeat;
    background-size: cover;
    
    
}

.box {
    height: 50px;
    width: 100px;
    background-color: brown;
    color: white;
    margin: 3%;
    text-align: center;
    flex: 1 100px;
    cursor: pointer;
    border-radius: 25px;
}

.box h2 {
    margin: 2px;
}
#box-1 {
    color:brown;
}

#box-3 {
    visibility: collapse;
}

#box-5 {
    transform:rotate(180deg)
}
#box-6,
#box-7 {
  flex: 45%;
}

#reset {
    flex: 100%;
}
.box-6-small {
    display: none;
}

@media only screen and (max-width: 402px) {
    #box-6-text {
        display: none;
    }
    .box-6-small {
        display: block;
    }
}

/*-------rock paper scissors section-----*/

.game-banner{
    padding: 10%;
    font-size: 1.25rem;
    text-align: center;
}

#game-container {
    display: flex;
    width: 100%;
    max-height: 700px;
    min-height: 400px;
    margin: auto;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-image: url(../images/rockpaperscissors.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.guess-container {
    display: flex;
    max-width: 300px;
    min-width: 150px;
    max-height: 500px;
    margin: auto;
    justify-content: space-around;
    align-content: center;
    background-color: rgb(201, 201, 222);
    border: 4px solid rgb(105, 105, 150);
    border-radius: 5px;
    flex-wrap: wrap;
    flex-direction: column;
}

@media only screen and (min-width: 495px) {
    .guess-container {
        height: 250px;
    }
}

.img-style {
    width: 100px;
    height: 100px;
    margin: 5%;
}
.rock-img {
    background-image: url(../images/rock.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.paper-img {
    background-image: url(../images/paper.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.scissors-img {
    background-image: url(../images/scissors.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#lose-container {
    display: none;
    width: 100%;
    max-height: 700px;
    min-height: 400px;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    font-size: 2rem;
    background-color: rgb(222, 179, 151);
}
#draw-container {
    display: none;
    width: 100%;
    max-height: 700px;
    min-height: 400px;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    font-size: 2rem;
    background-color: rgb(176, 228, 167);
}
#win-container {
    display: none;
    width: 100%;
    max-height: 700px;
    min-height: 400px;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    font-size: 2rem;
    background-color: rgb(176, 228, 167);
}

.game-button {
    height: 50px;
    width: 100px;
    background-color: rgb(201, 201, 222);
    margin: 5%;
    border: 2px solid rgb(105, 105, 150);
    font-size: 1rem;
}

.reset-game-button {
    height: 50px;
    width: 100px;
    background-color: rgb(201, 201, 222);
    border: 4px solid rgb(105, 105, 150);
    font-size: 1rem;
}

/* footer section */

.footer {
    text-align: right;
    padding: 5%;
}