body {
    margin: 0px;
    padding: 0px;
    color: rgba(255, 255, 255, 1.0);
    background: rgba(33, 33, 33, 1.0);
    font-family: Arial, 
                 system-ui, 
                 -apple-system, 
                 BlinkMacSystemFont, 
                 'Segoe UI', 
                 Roboto, 
                 Oxygen, 
                 Ubuntu, 
                 Cantarell, 
                 'Open Sans', 
                 'Helvetica Neue', 
                 sans-serif;
    display: flexbox;
    justify-content: space-between;
}

#alert {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1002;
    overflow-x: hidden;
    overflow-y: hidden;
    align-content: center;
}

.wrapper {
    width: 90%;
    height: auto;
    max-width: 500px;
    margin: 10% auto;
    text-align: left;
    background-color: rgba(0, 0, 0, 1.0);
}

.content {
    display: block;
    padding: 30px; 
    border-radius: 5px;
    text-align: center;
    background-color: rgba(0, 0, 0, 1.0);
    box-shadow: 0 0 5px rgba(95, 151, 101, 1.0);
    -o-box-shadow: 0 0 5px rgba(95, 151, 101, 1.0);
    -moz-box-shadow: 0 0 5px rgba(95, 151, 101, 1.0);
    -webkit-box-shadow: 0 0 5px rgba(95, 151, 101, 1.0);
    -ms-box-shadow: 0 0 5px rgba(95, 151, 101, 1.0);
}

.content h4 {
    text-align: center;
}

.content hr {
    top: 20px;
    width: 100%;
    position: relative;
    color:rgba(255, 255, 255, 1.0);
}

.content p {
    top: 25px;
    text-align: center;
    position: relative;
    font-size: 12px !important;
}