#error_message{
    color:red;
}

.centered {
position: fixed;
top: 40%;
width:100%;
/* bring your own prefixes */
text-align: center;
font-weight: 900;
color:red;
font-size: 6vw;
z-index: 999;
}

body{
    background-image:linear-gradient(orange,darkred);
    color:white;
    font-family:calibri;
    font-size:large;
    margin:0px;
    padding:0px;
    border:0px;
}

header{ 
    background-color: #660000;
    padding:1vw;text-align: left;
    color:rgb(255, 255, 255);font-family: 'Lucida Sans';
    font-weight: 700;
    text-shadow: 2px 2px #FF0000;
    img{
        float:left;
        height:10vw;
    }

}
#headertext{
    font-size:5vw;
}

footer{
    font-size: 2.5vh;
    background-color: #660000;
    text-shadow: 2px 2px #FF0000;
    padding:20px;
    text-align: left;
    height:100px;
    a{
        color:rgb(198, 146, 146);
    }
    a:hover{
        color:#ffffff;
    }
}


.row:after{
    content: "";
    display: table;
    clear: both;
}

.column2:first-child{
    margin-right:5%;
}

.column1{
    input{
        width:90%
    }
}

.column2{
    display:block;
    width:42.7%;
    height:50px;
    float:left;
    color:white;
    input{
        width:100%;
    }
}

.column3{
    display:block;
    width:30.6%;
    height:50px;
    float:left;
    color:white;
    input{
        width:95%;
    }
}

.card{
    margin-right:10px;
    display:block;
    float:left;
    img{
        border-radius: 15px;
        border-width: 0px;
        border-color: red;
        border-style: dotted;
        height:100px;
    }
}

#state{
    float:left;
    width:25%;
    margin-right:1%;
    select{
        width:100%;
    }
}

#form{
    padding:5%;
    background-image: radial-gradient(black, rgb(58, 58, 58), black);
    margin-left: 10%;
    margin-right:40%;
}

.myButton {
    margin-top:10px;
    display: inline-block;
    
    background-position: -7px -5px;
    background-size:194px 105px;
    width:180px;
    height:88px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #373737;
}

#paynow.myButton{background-image: url('./images/PayNow.png');}

#paynow.myButton:hover{background-image: url('./images/PayNowhover.png');}



.myButton:hover {
    background-color:rgb(175, 175, 175);
}

#clear{
    margin-right:9%;
    background-image: url('./images/ClearForm.png');
    background-position: 15px 10px;
    background-size:150px;
    background-repeat:no-repeat;
}

.myButton:active {
    background-color: #ffffff;
    box-shadow: 0 2px #373737;
    transform: translateY(7px);
}

#navbar{
    ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
    }

    li {
    float: left;
    }

    li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    }

    li a:hover {
    background-color: #111;
    }

    .search{
    float: right;
    margin-right:10px;
    }

    input[type=text] {
    width:200px;
    margin-right:-4px;
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
    }

}

.emailButton{
    margin-top:10px;
    margin-bottom:10px;
    width:100px;
    height:30px;
}

.searchButton {
    background-color: #a10000;
    border: none;
    color: white;
    padding: 7px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

#devil{
    float:right;
    position:absolute;
    top:500px;
    right:30px;
    width:40%;
    img{
        width:100%;
    }
}

.tooltip {
    width:80%;
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* The container */
.container {
    
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: darkgray;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    
    display: block;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
background-color: blue;
}


/* Style the checkmark/indicator */
.container .checkmark:after {
    
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid rgb(255, 255, 255);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.footerBlock{
    display:block;
    float:right;
    margin-right:10%;
    img{
        height:80px;
    }
}

.contentBlock{
    margin:10px;
    display:block;
    float:left;
    img{
        width:20vw;
    }
}

#middle{
    margin-left:10%;
    margin-right:10%;
}