@font-face {
  font-family: Gill;
  src: url('../font/GILL.TTF') format("truetype");
}

@font-face {
    font-family: 'CJ_Font';
    src: url('../font/GILL.TTF') format('ttf'), /* Modern Browsers */
         url('../font/GILL.TTF')  format('truetype'), /* Safari, Android, iOS */
}

html {
  font-family: Gill;
  background-color: #1E3C72;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
     font-family: 'CJ_Font';
     margin: 0;
     padding: 0;
}

main {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo {
    margin: 20px 0;
    width: 80%;
    max-width: 500px;
}

p {
  margin: 30px 0;
  font-size: 16px;
  font-family: Gill;
}

h1,
h2,
h3,
h4 {
  margin: 0 20px;
  font-family: Gill;
  font-weight: 200;
  text-align: center;
}

@media (max-width:768px) {
  h1 {
    font-size: 5vw;
  }
}