﻿body {
}
/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color:white;
    color: #000;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    text-align:center;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 650px) {
    .jumbotron {
        margin-top: 20px;
        border: solid;
        border-color: black;
    }
    #footer {
        width: 250px;
    }

    .body-content {
        padding: 0;
    }
}
/* age chack page specific styling*/
h1 {
    color: #000;
}

h2 {
    color: #232323;
}

p {
    margin: 0;
}

#age-gate {
    text-align: center;
}

.logo {
    width: 300px;
}

#footer {
 /*   display: block;*/
    width: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: small;
}

input[type=text] {
    width: 100px;
    height: 50px;
    border: 2px solid #808080;
    padding: 3px;
    font-size: 20px;
    border-radius: 25px;
    text-align: center;
}

select {
    width: 340px;
    height: 70px;
    border: 3px solid #ff0000;
    padding: 3px;
    font-size: 20px;
    border-radius: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.age-gate-notice{
    font-size:small;
    font-weight: bold;
    font-style:italic;
}

.age-gate-submit {
    width: 100px;
    height: 50px;
    border: solid;
    border-color: black;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(359deg,rgba(25,181,254,1) 22%,rgba(30,135,195,1) 60%);
    border-radius: 20px;
    margin-bottom: 20px;
}

    .age-gate-submit:hover {
        color: #fff;
        background: linear-gradient(359deg,rgba(255,0,0,1) 22%,rgba(153,0,0,1) 60%);
        cursor: pointer;
    }


