You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.0 KiB
72 lines
1.0 KiB
@import url(fonts.css);
|
|
|
|
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: dindisplay_pro, sans-serif;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:focus{
|
|
outline: 0 none;
|
|
}
|
|
|
|
.container{
|
|
max-width: 1140px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.page_header{
|
|
background: url(../images/header.jpg) no-repeat top fixed;
|
|
padding: 16px 0 35px;
|
|
}
|
|
|
|
h1{
|
|
color: #fff;
|
|
text-align: center;
|
|
font-size: 50px;
|
|
line-height: 50px;
|
|
font-weight: 400;
|
|
padding-top: 38px;
|
|
}
|
|
|
|
h2{
|
|
font-size: 30px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
h3{
|
|
font-size: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.back_to_site{
|
|
float: right;
|
|
color: #FF6600;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.back_to_site span{
|
|
color: #fff;
|
|
transition: color .3s
|
|
}
|
|
|
|
.back_to_site:hover span{
|
|
color: #FF6600;
|
|
transition: color .3s;
|
|
}
|
|
|
|
.page_header p{
|
|
padding-top: 25px;
|
|
font-size: 22px;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
.page_header p span{
|
|
color: #FF6600;
|
|
}
|
|
|