body {
    width: 100%;
    height: 100%;
    margin: 0;

    background: #43cea2; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #43cea2, #185a9d); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #43cea2, #185a9d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    color: white;

    font-family: "Roboto";
    text-align: center;
}

h1 {
    font-size: 50px;
    text-shadow: 1px 0px 5px white;
}

h3 {
    margin: 5px 20px 0 20px;
}

p {
    font-size: 30px;
    margin: 0;
}

span {
    font-size: 50px;
    color: black;
    text-shadow: 2px 0px 5px white;
}

#container input[type=text]{
    color: white;
    background-color: inherit;

    border: none;
    width: 50%;
    margin-bottom: 10px;

    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

#container input[type=text]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1; /* Firefox */
}

#container input[type=text]:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}

#container input[type=text]::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
}

#container input[type=text]:focus{
    background-color: white;
    color: black;
    text-align: left;
}

#container input[type=text]:focus:-ms-input-placeholder{
    color: black;
    opacity: 0.5;
}

#container input[type=text]:focus::placeholder{
    color: black;
}

#container input[type=text]:focus::-ms-input-placeholder{
    color: black;
}

#container div {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    padding-top: 10px;
    
    box-sizing: border-box;
    border: 4px solid white;
    border-radius: 25px;

    float: left;
}

.btn-close{
    float: right;
    border: none;
    background: none;
    color: white;
    font-size: 23px;
    line-height: 13px;

    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 9px 12px;
    padding-top: 7px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #5e5e5e;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    background-color: #d1dade;
    -webkit-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-image: none !important;
    border: none;
    text-shadow: none;
    box-shadow: none;
    transition: all 0.12s linear 0s !important;
    font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}


#modalLink {
    border: none;
    display: block;
    height: 30px;
    width: 300px;
    padding: 1px 1px;
    line-height: 30px;

    text-decoration: none;
    background-color: white;
    font-size: 20px;
    text-transform: uppercase;

    margin: 30px auto;
    cursor: pointer;
    box-shadow: 0px 0px 2px 2px white;
}


#container {
    margin:0 auto;
}

@media only screen and (min-width: 1200px)  { 

    #container div {
        width: 50%;
    }
}

/* **************************************** */
/*              MODAL                       */
/* **************************************** */

.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    color: black;
    width: 50%;
    position: relative;
    margin: 15% auto;
    box-sizing: border-box;
    padding: 20px 13px 20px 13px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }

.modalDialog div .btn-success {
    margin: 20px auto;
}

.modalDialog input {
    width: 80%;
    margin-top: 10px;
    margin-bottom: 10px;
}

#modal-form {
    display: inline-block;
    text-align: left;
}







