* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
  font-display: swap;
}

:root {
  --white-color: #ffffff;
}

body {
  font-family: "Montserrat-Regular";
}
/* common css */
a {
  display: inline-block;
  text-decoration: none;
}
img, video {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  text-transform: unset;
  margin-bottom: 15px;
  line-height: 1;
  text-transform: uppercase;
}
/* landing css */
#landing .landing-box {
	background: url(../images/banner.png) no-repeat;
	background-size: 100% 100%;
	background-position: center;
	overflow: hidden;
	min-height: 100vh;    
  min-height: 100svh;   
  min-height: 100dvh;   
	display: flex;
	flex-direction: column;
  justify-content: space-around;
	align-items: center;
	max-width: 480px;
	margin: 0 auto;
	position: relative;
}
#landing .landing-box a {
  text-align: center;
}
#landing #logoBtn img {
  max-width: 85%;
  margin: 0 auto;
  padding-top: 20px;
}
#landing .landing-box #button {
  position: relative;
  bottom: 11%;
  width: 75%;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 6px;
}
#landing .landing-box #button img {
  max-width: 75%;
} 
#landing .disclaimer p {
  font-size: 11px;
  color: var(--white-color);
  padding: 20px 12px;
  text-align: center;
}

@media (max-width: 375px) {
  #landing #logoBtn img {
    max-width: 68%;
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  #landing #logoBtn img {
    max-width: 64%;
    padding-top: 10px;
  }
  #landing .disclaimer p {
    font-size: 10px;
    padding: 12px 12px;
  }
}

.zoom {
  animation: zoom 1s linear alternate infinite;
}
@keyframes zoom {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

