/********* Charset Import *********/
@charset "utf-8";

/********** Fonts Import **********/
@font-face {
    font-family: 'Over There';
    src: url('../fonts/Over_There/Over_There.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas_neue/BebasNeue-Regular.ttf') format('truetype'),
        url('../fonts/bebas_neue/BebasNeue-Regular.eot') format('embedded-opentype'),
        url('../fonts/bebas_neue/BebasNeue-Regular.woff') format('woff'),
        url('../fonts/bebas_neue/BebasNeue-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/********* Common Element *********/
* {
  margin: 0px;
  padding: 0px;
}

html, body {
  margin: 0;
}

body {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  border: 0px;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a:focus,
a:active,
a:visited,
a:hover {
  text-decoration: none;
  outline: none;
}
button {
  outline: none !important;
}

body {
  overflow: hidden;
}

/*********** HTML Heading Tags ***********/
h1 {
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
  font-size: 5vh;
  letter-spacing: 0.1rem;
  font-weight: 300;
  line-height: 110px;
  margin: auto;
  color: #ffffff;
  transition: all 0.3s ease;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 22px;
  line-height: 50px;
  color: #666666;
  margin: 0;
  z-index: 100;
}

h3 {
  font-size: 2.5vh;
  font-weight: 100;
  font-family: "Bebas Neue", sans-serif;
  color: #faebd7;
  margin: 0;
  margin-bottom: 2vh;
  z-index: 4;
}