@font-face {
  font-family: 'LeagueSpartanBold';
  src: url('../fonts/LeagueSpartan-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'LeagueSpartan';
  src: url('../fonts/LeagueSpartan-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Gotham-Light';
  src: url('../fonts/Gotham-Light.otf') format('truetype');
}

@font-face {
  font-family: 'Gotham-Bold';
  src: url('../fonts/Gotham-Bold.otf') format('truetype');
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100vh;
}

@keyframes zoom-in {
  0% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

@-webkit-keyframes zoom-in {
  0% {
      -webkit-transform: scale(1.1);
  }
  100% {
      -webkit-transform: scale(1);
  }
}