.game-window{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 251px;
    background-image: url("../img/space.jpg");
    
}

.game-box{
    border: 2px solid azure;
    display: flex;
    flex-direction: row;
    border-style: groove;
    box-shadow: cadetblue;
    background-color: #343d52;
    box-shadow: -3px 3px 5px #888888;
}

#top{
    color: #54FADB;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #343d52;
    width: 1000px;
    height: 120px;
}

#top-left{
    margin-left: 25px;
}

#top-score{
    display: flex;
    justify-content: center;
}

#top-right{
    width: 530px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 25px;
}

#left{
    height: 100%;
}

#bottom{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-top: 2px solid azure;
    padding: 10px;
}

#bottom-left{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #54FADB;
    background-color: #343d52;
    border-right: 2px solid azure;
    height: 100%;
}

#rc{
    margin-top:10px;
    margin-bottom: 10px;
}

.button{
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #54FADB;
    background-color: #696174;
    min-height: 20px;
    border: 3px solid darkgrey;
    border-style: outset;
    padding: 5px 5px 5px 5px;
    box-shadow: 0px 3px 1px black;
}

.notDir{
    margin-top: 12px;
}

#directions{
    display: flex;
    flex-direction: column;
}

#time{
    border: 2px solid black;
    width: 60%;
    text-indent: 10px;
    margin-top: 7px;
    margin-bottom: 7px;
    background-color: slategray;
}

#inputs{
    max-height: 140px;
    overflow: scroll;
}

#instructions, #linkedin, #github{
    width: max-content;
    height: 50px;
}

#modal-hidden{
    display: none;
}

.modal{
    opacity: 0;
    z-index: -1;
}

#modal-show{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 200ms ease-out;
}

.appear {
  z-index: 1; 
  opacity: 1;
}

#modal-content{
    width: 1000px;
    background-color: black;
    color:#54FADB;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 2%;
    border-radius: 8px;
    border-style: groove;
    box-shadow: cadetblue;
    box-shadow: -3px 3px 5px #888888;
}

.modal-div{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 10px;
}

.modal-div > *{
    margin-left: 20px;
}

.description{
    display: flex;
    align-items: center;
}

.modal-pic{
    height: 100px;
    width: 75px;
}

#score{
    border: 1px solid azure;
}

#top-score{
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

#volume, #mute{
    margin-top: 46px;
}