/*google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/*override browser styling*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
    
/*general styles*/
body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    background-color: #3a3a3a;
    font-family: 'Chakra Petch', sans-serif; 
}

header {
    font-size: 1.5rem;
    padding: 1rem;
    position: fixed;
    z-index: 99;
    width: 100%;
    background-color: #3a3a3a;
    box-shadow: 0 2px 2px #ffffff;
    display: flex;
    justify-content: center;
}

#banner {
    width: 100%;
    height: 6rem;
    opacity: 75%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background: no-repeat center center/cover;
}

#game-description {
    margin-top: 6.5rem;
    font-size: 1rem;
    font-style: italic;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

.game-objective {
    font-size: 1rem;
    font-style: italic;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

#game-area {
    border: 5px solid #ffffff;
    margin: 0rem 2rem 2rem;
}

#start-game {
    font-size: 0.75rem;
    margin: .25rem auto .25rem auto;
}

#start-game-align {
    text-align: center;
}

#pname {
    width: 100%;
    font-family: 'Chakra Petch', sans-serif; 
    font-size: 20px;
    text-transform: uppercase;
}

#play-button {
    color:#3a3a3a;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Chakra Petch', sans-serif; 
    font-size: 15px;
    height: 5rem;
    width: 15rem;
}

#correct {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 5px;
    color: lightgreen;
    font-weight: bold;
}

#incorrect {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    color: tomato;
    font-weight: bold;    
}

#question-box {
    border: 3px solid #ffffff;
    display: flex;
    justify-content: center;
    margin: 2.5%;
    min-height: 80px;
    padding: 5px;
    height: fit-content;
    text-align: center;  
}

.answer-buttons {
    display: flex;
    justify-content: center;
    margin: 0px 15px 10px;
}

#aye-button {
    height: 5rem;
    width: 15rem;
    font-family: 'Chakra Petch', sans-serif; 
    font-size: 30px;
    color: #ffffff;
    background-color:deepskyblue;
}

#naw-button {
    height: 5rem;
    width: 15rem;
    font-family: 'Chakra Petch', sans-serif; 
    font-size: 30px;
    color: #ffffff;
    background-color:deepskyblue;
}

footer {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;

}

#social-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    height: auto;
    font-size: 2.5vh;
    margin-top: 5%;
    padding-bottom: 2.5%;
    color: #ffffff;
}

#social-links a:link {
    color: #ffffff;
}

#social-links a:visited {
    color: #ffffff;
}

@media only screen and (min-width: 768px) {
    
    .answer-buttons {
        display: inline-block;
        margin: 0px 52.5px 10px;
    }    

    #score-bar {
        display: flex;
    }    
    
    #correct {
        width: 50%;
        float: left;
        margin-top: 25px;
    }

    #incorrect {
        margin-left: 20%;
        margin-top: 25px;
    }

    #social-links {
        font-size: 1.5rem;
    }
  }

  @media only screen and (min-width: 1024px) {
    #game-area {
        margin: 2rem 8rem 2rem;
    }

    .answer-buttons {
        margin: 0 9% 2%;
    }

    #game-description {
        font-size: 1.25rem;
        padding: 1rem;
    }

    .game-objective {
        font-size: 1.25rem;
        padding: 1rem;
  }

    #play-button {
    font-size: 1.5rem;
    height: 6rem;
    width: 20rem;
    padding: 1rem;
    }

    #pname {
    font-size: 1.5rem;
    text-transform: uppercase;
    }

    #correct {
    font-size: 1.5rem;
    }

    #incorrect {
    font-size: 1.5rem;
    }

    #question-box {
    font-size: 1.5rem;
    padding: 10px;
    }

    #social-links {
    font-size: 2rem;
    }
    
  }

  @media only screen and (min-width: 1440px) {
    #game-area {
        margin: 0rem 10rem 0rem;
        
    }

    .answer-buttons {
        margin: 0 11.9% 2%;
    }

    #game-description {
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    .game-objective {
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    #play-button {
    font-size: 1.25rem;
    height: 6rem;
    width: 18rem;
    }

    #pname {
    font-size: 1.5rem;
    text-transform: uppercase;
    }

    #correct {
    font-size: 1.5rem;
    }

    #incorrect {
    font-size: 1.5rem;
    }

    #question-box {
    font-size: 1.5rem;
    padding: 7.5px;
    }

    #aye-button {
    height: 6rem;
    width: 18rem;
    font-size: 2.5rem;
    }

    #naw-button {
    height: 6rem;
    width: 18rem;
    font-size: 2.5rem;
    }
}

@media only screen and (min-width: 2560px) {
    
    header {
        font-size: 3rem;
    }
    
    #banner {
        height: 10rem;
    }
    
    #game-area {
        margin: 2rem 10rem 0rem;
    }

    .answer-buttons {
        margin: 0 14.1% 4%;
    }

    #game-description {
        margin-top: 12rem;
        font-size: 2.5rem;
        padding: 1rem;
    }

    .game-objective {
        font-size: 2.5rem;
        padding: 1rem;
    }

    #play-button {
    font-size: 2.5rem;
    height: 10rem;
    width: 30rem;
    }

    #pname {
    font-size: 2.5rem;
    text-transform: uppercase;
    }

    #correct {
    font-size: 3rem;
    }

    #incorrect {
    font-size: 3rem;
    }

    #question-box {
    font-size: 3rem;
    padding: 10px;
    }

    #aye-button {
    height: 10rem;
    width: 30rem;
    font-size: 3.5rem;
    }

    #naw-button {
    height: 10rem;
    width: 30rem;
    font-size: 3.5rem;
    }

    #social-links {
        font-size: 4rem;
        }
        

}
