
/** text/background styling **/

body{
    background-color: #222222;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    font-style: normal;
}

h1{
    color: black;
    margin-bottom: 3%;
    font-size: 30pt;
}

p{
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.stage-directions{
    color:gray;
    font-style: italic;
}

/** div styling **/

.container{
    margin-left: 7%;
    margin-right: 7%;
    margin-top: -3%;
    margin-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 7%;
    padding-top: 5%;
    background-color: #d34646;
    border-radius: 0px 0px 30px 30px;
    border: 5px solid black;

}

.scene{
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 15px;
    margin-top: 20px;
    border: 5px solid black;
    line-height: 30px;
}

.scene p{
    font-size: 15pt;
}

#scene1, #scene3{
    margin-right: 20%;
    border-radius: 25px 25px 25px 0px;
}

#scene2{
    margin-left: 20%;
    border-radius: 25px 25px 0px 25px;
}

