.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #cde2f9;
    flex-direction: column;
}

.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.game_start{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(96, 10, 10, 0.105);
    margin: 20px;
    text-decoration: none;
    font-weight: bold;
}

.story{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.078);
    text-decoration: none;
    font-weight: bold;
}

body{
    background-color:#cde2f9;
}

#story_button{
    display: block;
    padding: 20px 20px; 
  margin: 20px auto;
  background-color: rgb(51, 110, 221);
  color: white;
  border: 10px;
    border-radius: 10px;
}
#popup-wrapper {
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }

#popup-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    background: white;
    margin: 10% auto;
    padding: 20px;
    position: relative;
}
#story_text{
    margin: 5% auto;
    margin-right: 3%;
    margin-left: 3%;
    font-size: 25px;
    text-align: center;
    line-height: 180%;
    color: white;
    text-shadow: 0px 0px 1px #ffffff,
    0px 0px 20px #90ceff,
    0px 0px 40px #90ceff,
    0px 0px 60px #e1ffff,
    0px 0px 80px #e1ffff;
    font-family: "Yu Gothic";
}

#close {
    position: absolute;
    top: 0;
    right: 5px;
    cursor: pointer;
    border: solid;
    font-size: 20px;
    font-family: "Yu Gothic";
    color:#ffffff;
    border-radius: 5px;
    font-weight: bold;
    margin-top:5px;
    margin-right:5px;
  }

#audio-confirmation{
    background-color: rgba(132, 208, 255, 0.61);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.confirmation{
    display: flex;
    text-align: center;
    flex-direction: column;
    margin: 10% auto;
    padding: 20px;
}
.confirmation p{
    font-size: 2rem;
    font-family: "Yu Gothic";
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 0px 1px #ffffff,
    0px 0px 20px #90ceff,
    0px 0px 40px #90ceff,
    0px 0px 60px #e1ffff,
    0px 0px 80px #e1ffff;
    font-family: "Yu Gothic";
    
}
