body {
    background-color: rgb(0, 0, 0);
    background-image: url('../images/excimg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: rgb(248, 239, 197);
    text-align: center;
}

a:link {
    color: rgb(248, 239, 197);

}

a:visited {
    color: rgb(248, 239, 197);
}

a:hover {
    color: rgb(249, 247, 238);
}

a:active {
    color: rgb(248, 239, 197);
}


#content {
    font-size: 1em;
    float: center;
}

#btnLogin {
    font-size: 1em;
    font-weight: bold;
    background-color: black;
    color: rgb(248, 239, 197);
    padding: 1em;
}

/* Inside */
#logo {
    width: 5em;
    margin: 1em;
}

#response {
    color: rgb(251, 71, 71);
}

#pdf {
    font-size: 2em;
    position: absolute;
    margin-left: 5%;
    width: 90%;
    text-align: center;
    bottom: 50px;
}

.container {
    padding: 2em;
}

input {
    background-color: burlywood;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    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 */
    padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #000000;
    margin: auto;
    /* 15% from the top and centered */
    border: 1px solid #888;
    width: 20em;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    /* Position it in the top right corner outside of the modal */
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@media (max-width: 500px) {
    #pdf {
        font-size: 1rem;
    }
}