html{    
    
    width :100%;
    height: 100%;}

body {
    overflow: hidden;
    width :100%;
    height: 100%;
    background-color: #fafaf5;
    color : rgb(0, 20, 60);
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.header{
    padding: 40px;
    width :100%;
    height: 200px;
    font-style: normal; 
}

h1{
    padding:10px;
}

.popup {
    width: 400px;
    height: auto;
    padding : 10px 20px 10px 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
    position: absolute;
    bottom: 5vh;
    z-index: 10;
    left: 2vw;
    border-radius: 15px;
    background-color: white;
}

/* NAV */

.game_container{
    width: 1280px;
    z-index: 2;
    height: 720px;
    position: absolute;
    margin: auto;
    inset:0;
    display: flex;
    flex-direction: row;
}

.game_nav{
    height: 720px;
    z-index: 3;
    width: 75px;
    position: absolute;
    top: 0;
    left:-75px;
    background-color: #eee;
}

#game{
    width: 1280px;
    height: 720px;
    position: absolute;
    background-color:  #fff;
    border: #eee 1px solid;

    gap: 20vw;
    display: flex;
    align-items: end;
    justify-content: center;
}

/* DIALOGUES */


#dialogue-box{
width: 70%;
background-color: white;
padding: 2vw;
position: absolute;
right: 0;
left: 0;
margin: auto;
bottom: 1vw;
border-radius: 2vw;
box-shadow: 0px 0px 11px rgba(0, 0, 0, .2);}

.speaker-image{    width: 50px;
}

.speaker-container {
    display: flex;
    align-items: center;
    gap: 10px;}

.response {    
    text-align: center;
    padding: 10px 20px;
    min-width: 10%;
    max-width: 40%;
    margin-right: 10px;
    border-radius: 2vw;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
}

.responses-container{
    display: flex;
}

.speaker-text{    text-transform: capitalize;
    font-weight: 800;
    font-size: 25px;}