@import "font.css";

html, body{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body{
  font-family: 'custom-sans-serif';
  font-weight: 400;
  background-color: #eee;
}

.background-section{
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  position: relative;
}

.main-section{
  position: absolute;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
}

.logo{
  width: 100px;
  height: 72px;
  background-image: url(../images/logo.png);
  background-size: cover;
  position: absolute;
  left: 50%;
  top: -72px;
  transform: translateX( -50%);
  -webkit-transform: translateX( -50%);
}

h1{ 
  font-size: 85px;
  -webkit-margin-before: 0.2em;
  -webkit-margin-after: 0.2em;
}

p{  
  font-size: 30px;
  -webkit-margin-before: 0.5em;
}

@media screen and (max-width: 768px){
  h1{ font-size: 7.0vh;}
  p{ font-size: 4.0vh;}
}
