html, body {
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

#popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: none;
}

#popup_main_div {
    width: 80%;
    height: 80%;
    border: 2px solid black;
    border-radius: 5px;
    background-color: rgba(65,25,68,0.8);
    position: absolute;
    top: 10%;
    left:10%;
}

p.popupElementTitle {
    padding-left: 5%;
    font-size:20px;
    color: white;
}

hr.popupTitle {
    font-size: 30px;
    color: white;
    border-bottom: white 1px;
    border-style: none none solid none;
    top: 5%;
    text-align: center;
}

input.popupInput {
    font-size: 15px;
    background-color: darkorchid;
    border-width: 1px;
    border-radius: 8px;
    padding: 2px 4px;
}

button.popupButton {
    font-size: 15px;
    background-color: darkorchid;
    border-radius: 8px;
    border-width: 1px;
    padding: 2px 4px;
}

button.popupDoneButton {
    font-size: 20px;
    background-color: darkorchid;
    border-radius: 8px;
    border-width: 1px;
    padding: 4px 4px;
    position:absolute;
    right: 30px;
    bottom: 30px;
}

p.popupText {
    font-size: 15px;
    color: white;
    padding-left: 5%;
    word-wrap: break-word;
}