#modaltable {
    margin-top: 5px;
    margin-bottom: 5px;
}

#modalheader {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

#points {
    display: inline-block;
}

#modal-points {
    font-size: 50px;
    text-shadow: 1px 1px 2px black, 0 0 1em white, 0 0 0.2em white;
    font-family: Verdana;
    margin-top: 0px;
    margin-bottom: 0px;
}

#modal-lp {
    font-size: 35px;
    color: rgb(250, 210, 0);
    text-shadow: 1px 1px 2px rgb(65, 65, 65), 0 0 1em yellow, 0 0 0.1em yellow;
    font-family: Arial;
    margin-top: 5px;
    margin-bottom: 7px;
}

#input-name {
    text-align: center;
}

#nameInput {
    width: 70%;
}

#inputButton {
    float: right;
    line-height: 200%;
    height: 44px;
    width: 45px;
    font-size: 20px;
    border: none;
    border-radius: 3px;
}

#usernameAfterInput {
    display: none;
    font-size: 23px;
    height: 1px;
    line-height: 0px;
}

.submitButton {
    outline: none;
    color: whitesmoke;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.submitButton:hover {
    cursor: pointer;
    opacity: 0.8;
    color: black;
    background-color: lightslategray;
}

.modal {
    display: none;
    position: absolute;
    left: 0; 
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-center {
    display: table-cell;
    vertical-align: middle;
}

.modal-content {
    position: relative; 
    text-align: center;
    vertical-align: middle;
    overflow: auto;
    padding: 20px; 
    margin: auto; 
    opacity: 0.7;
    color: whitesmoke;
    background-color:black;
    border: 1px solid lightgray;
    border-radius: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-shadow: 0 4px 8px 0 rgba(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
}

.inputTable {
    border: 2px solid lightgray;
    border-radius: 5px;
    width: 80%;
}

.input {
    text-align: center;
    font-size: 22px;
    height: 40px;
    width: 300px;
    outline-style: none;
    border: none;
    color: whitesmoke;
    background-color: black;
}

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