html, body {
    height: 100%;
    background: green url("/public/img/background.png") 0 repeat;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.error {
    color: #ff0000;
}
.container{
    height: inherit;
    width: 500px;
    position: relative; 
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 0px 15px;
    width: inherit;
    height: auto;
    background-color: white;
    border: 1px solid white;
    border-radius: 6px;
    box-shadow: 0 0 5px 5px rgba(0,0,0,.5);
}

.result-field{
    color: green;
    font-size: 16px;
    font-weight: bold;
}

.about {
    padding-left: 15px;
    padding-right: 15px;
    display: none;
}

.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background white;
    display: none;
}
#countdown{
    font-weight: 300;
    font-size: 16pt;
    text-align: center;
    color:red;
}
#expire-message{
    font-weight: 300;
    font-size: 24pt;
    text-align: center;
    color:red;
}
@media (max-width: 500px) {
    .container{
        width: 100%;
    }
    html, body{
        background: none;    
    }
    .content{
        box-shadow: none;
    }
}
@media (max-height: 630px) {
    html, body{
        height: auto;
    }
    .content{
        top: none;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .footer{
        position: relative;
        top: 602px;
        bottom: none; 
    } 
}
