  
@import url("https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Mountains+of+Christmas&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@600&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html{
    font-size: 62.5%;
    box-sizing: border-box;
    overflow: hidden;
}

body{
    font-family: "Press Start 2P", sans-serif;
    color: #eee;
    background-color: #222;
}

.container{
    margin-inline: auto;
    width: min-content;
}

header{
    position: relative;
    height: 35vh;
    border-bottom: 7px solid #eee;
}

main{
    height: 65vh;
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.left{
    width: 52rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right{
    width: 52rem;
    font-size: 2rem;
}

.displayMessage{
    margin-bottom: 8rem;
}

.hotter-colder{
    display: flex;
    justify-content: flex-start;
    margin-top: 4rem;
}

h1{
    font-size: 4rem;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
}

.between{
    font-size: 1.4rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.btn{
    text-align: center;
    display: flex;
    margin: 5px;
    font-weight: bold;
    padding: 10px 0 10px 10px;
    background-color: #11572e;
    text-shadow: -1px -1px #222, 1px 1px #222;
    color: #eee;
    border-radius: 7px;
    box-shadow: 0 2px #11572e;
    font-size: 2rem;
    font-family: inherit;
    cursor: pointer;
}

.btn:active{
    box-shadow: none;
    position: relative;
    top: 0.2rem;
}

.btn:hover{
    background-color: #136133;
}

.number{
    background: #eee;
    color: #333;
    font-size: 6rem;
    width: 20rem;
    padding: 5rem 0rem 5rem 0rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.guess{
    background: none;
    border: 4px solid #eee;
    font-family: inherit;
    color: inherit;
    font-size: 5rem;
    padding: 2.5rem;
    width: 25rem;
    text-align: center;
    display: block;
    margin-bottom: 3rem;
}

.message{
    height: 3rem;
}

.hotter-colder .hotter-message{
    margin-right: 15px;
    display: inline-block;
    color: #eee;
    font-family: "Yanone Kaffeesatz", sans-serif;
    font-size: 2.5rem;
    margin: 5px;
    font-weight: bold;
    font-style: oblique;
    padding: 10px;
    background-color: #be1013;
    border-radius: 7px;
    box-shadow: 2.5px 2.5px #e45323, -2.5px -2.5px #e45323;
}

.hotter-colder .colder-message{
    margin-left: 15px;
    display: inline-block;
    color: #222;
    font-family: "Mountains of Christmas", cursive;
    font-size: 2.5rem;
    margin: 5px;
    font-weight: bold;
    padding: 10px;
    background-color: #aad4e5;
    border-radius: 7px;
    box-shadow: 2.5px 2.5px #066f99, -2.5px -2.5px #066f99;
}

.label-score{
    margin-bottom: 2rem;
}

.check{
    text-align: center;
    display: inline-block;
    margin: 5px;
    font-weight: bold;
    padding: 10px 0 10px 10px;
    background: linear-gradient(
        to right, 
        #bf953f,
        #fcf6ba,
        #b38728,
        #fbf5b7,
        #aa771c
    );

    text-shadow: -1px -1px #eee, 1px 1px #eee;
    color: #222;
    border-radius: 7px;
    box-shadow: 0 2px #bf953f;
    font-size: 2rem;
    font-family: inherit;
    cursor: pointer;
}

.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content{
    background-color: #222;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #eee;
    width: 40%;
    display: flex;
    justify-content: center;
}

.modal-button{
    display: none;
    font-size: 1.5rem;
    width: 20rem;
    padding: 3rem 0rem;
    text-align: center;
    position: absolute;
    top: 29.5%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.reward-button{
    text-align: center;
    font-weight: bold;
    padding: 10px 0 10px 10px;
    background-color: #eee;
    border-radius: 7px;
    box-shadow: 0 2px #333;
    font-family: inherit;
    font-size: 9px;
    cursor: pointer;
}

.reward-button:hover, .reward-button:focus{
    background-color: #ccc;
}

.close{
    float: right;
    font-size: 28px;
    color: #eee;
    font-weight: bold;
    position: relative;
    left: 35px;
}

.close:hover, .close:focus{
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (min-width: 750px){
    
}




