﻿body {
}
.btn{
  width:100%;
  margin:5px auto;
  padding:5px;
  background:#ffffff;
  border:none;
  box-shadow: 1px 1px 1px 1px #1c5efb;
  border-radius:3px;
  outline:none;
  color:#1c5efb;
  font-weight:700;
  letter-spacing:0.125em;
  text-align:center;
  text-transform:uppercase;
}
 
.btn:hover{
  background:#1c5efb;
  color:#ffffff;
}

.btn1{
  width:100%;
  margin:5px auto;
  padding:5px;
  background:#ffffff;
  border:none;
  box-shadow: 1px 1px 1px 1px #ff0000;
  border-radius:3px;
  outline:none;
  color:#ff0000;
  font-weight:700;
  letter-spacing:0.125em;
  text-align:center;
  text-transform:uppercase;
}
 
.btn1:hover{
  background:#ff0000;
  color:#ffffff;
}

.btn2{
  width:100%;
  margin:5px auto;
  padding:5px;
  background:#ffffff;
  border:none;
  box-shadow: 1px 1px 1px 1px #0dba26;
  border-radius:3px;
  outline:none;
  color:#0dba26;
  font-weight:700;
  letter-spacing:0.125em;
  text-align:center;
  text-transform:uppercase;
}
 
.btn2:hover{
  background:#0dba26;
  color:#ffffff;
}

.textbox { 
    background: white; 
    border: 1px double #DDD; 
    border-radius: 5px; 
    box-shadow: 0 0 5px #333; 
    color: #666; 
    outline: none; 
    height:25px; 
    width: 275px;
    font-weight: 700;
} 

.select-style {
    border: 1px solid #ccc;
    width: 120px;
    border-radius: 3px;
    overflow: hidden;
    background: #fafafa;
}

.select-style select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
}

.h1{
 text-align:center;
    font-weight:bold;
    font-family:Verdana;
    font-size:large;
    background-color:white;
    border-radius:20px 20px 20px 20px;
    border-width:thin;
    border-color:blue;

}

.h2{
 text-align:center;
    font-weight:bold;
    font-family:Verdana;
    font-size:medium;
    background-color:white;
    border-radius:20px 20px 20px 20px;
    border-style:solid;
    border-width:thin;
    border-color:gray;

}

.h3{
 text-align:left;
    font-weight:bold;
    font-family:Verdana;
    font-size:medium;
    background-color:rgb(224,224,224);
    border-radius:20px 20px 20px 20px;
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink{
	-text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}