@media (max-width: 380px) {
    .identity-image {
        width: 100%;
    }

    img#logo {
        height: 100px;
        margin: 20 0 0 0px;
        padding: 0;
        vertical-align: middle;
        display: inline-block;
    }
}

@media (min-width: 380px) {
    .identity-image {
        width: 100%;
    }

    img#logo {
        height: 100px;
        margin: 0 0 0 40px;
        padding: 0;
        vertical-align: middle;
        display: inline-block;
    }
}

.identity-container {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    text-align: center;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    cursor: pointer;
}

.button:disabled, .button[disabled] {
    cursor: not-allowed;
    background-color: #66C96A;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 100;
    font-size: 12px;
    line-height: 30px;
    color: #777;
}

ol li, ul li {
    line-height: 150%;
}

p {
    line-height: 150%;
    margin: 0 0 15px 0;
}

h1, h2, h3, h4, h5 {
    margin: 10px 0 0 0;
    padding: 20px 0 0 0;
}

h1 {
    text-align: center;
    margin: 0;
    padding: 10px 0 20px 0;
}

h3, h4, h5 {
    margin: 0;
    padding: 0;
}

p.margintop {
    margin-top: 10px;
}

/**
 * CSS for the modals
 */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: black;
    float: right;
}

.close:hover, .close:focus {
    color: #777;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #F7F7F9;
}

.modal-body {
    padding: 2px 20px 2px 20px;
    line-height: 1.5;
}

.modal-footer {
    padding: 10px 20px;
    background-color: #F7F7F9;
}
