html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html, body {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    background: #800;
    font-family: 'Droid Serif', serif;
    font-size: 1rem;
    line-height: 1.2rem;
}
.preSite{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;

    font-family: 'Patua One', sans-serif;
    font-size: 100px;
    line-height: 100px;
    text-align: center;
    color: #FFEE88;
    background: #800;
    margin: 0;
    text-shadow: 4px 4px 3px rgba(150, 150, 150, 0.39);
}
.preSite .meh{
    font-size: 19px;
}
h1 {
    margin: 0;
    padding: 0;
}
header {
    min-height: 100px;
    padding: 7px 20px;
    background: #500;
    color: #efefef;
}
header h1 {
    font-family: 'Patua One', sans-serif;
    font-size: 3rem;
    line-height: 3.5rem;
    text-align: center;
    color: #FFEE88;
    margin: 0 20px 0 20px;
    text-shadow: 4px 4px 3px rgba(150, 150, 150, 0.39);

    

}
header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    line-height: 12px;
    text-indent: 0;
    letter-spacing: 10px;
    text-align: center;
    color: #FF8800;
    margin: 1rem auto;
}
@media (min-width: 600px) {
    header h1 {
        font-size: 5rem;
        line-height: 5.5rem;
    }
    header h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 15px;
        line-height: 10px;
        text-indent: 22px;
        letter-spacing: 21px;

        
        text-align: center;
        
        color: #FF8800;
    }
}

.right-block{
    position: relative;
    width: 200px;
    margin: 0;
    padding: 20px;
    background: #efefef;
    border: 1px solid #333;
    border-radius: 3px;
    float: right;
}
label {
    font-size: 0.8rem;
    line-height: 1rem;
    color: #555;
    margin: 0;
    padding: 0;
    display: block;
}
input[type=text] {
    font-size: 1.5rem;
    line-height: 1.7rem;
    height: 1.7rem;
    border-radius: 5px;
    background: #fff;
    color: #222;
    display: block;
    min-height: 3rem;
    width: 100%;
    text-indent: 0.5rem;
    margin: 0;

}
.form-group {
    margin: 0 0 1.5rem;
    position: relative;
}
.ng-invalid {
    border-left: 4px solid darkred;
}
.ng-valid{
    border-left: 4px solid darkgreen;
}
.ng-pristine {
    border: none;
}
.radio-options {
    display: inline-block;
    margin: 0 2rem 0 0; 
}
.errors{
    background: #fcc;
    color: #500;
    width: 100%;
    padding: 10px;
    border: 1px solid #500;
    border-radius: 5px;
    opacity: 0.9;
    font-size: 0.8rem;
    line-height: 1rem;
}
.container {
    position: relative;
}
.closer {
    color:#333;
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}
.closer:hover {
    color: #000;
}