
/*==========  Eric Meyer's Reset  ==========*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

/*----------  BORDER-BOX RESET  ----------*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
body{
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  background: #FEDA00;
  color: #231F20;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  color: #231F20;
  text-decoration: none;
  font-weight: 700;
}
#anim{
  width: 18vw;
}
.el{
  fill:#000;
  opacity: .8;
}
#logo{
  width: 33vw;
  /* width: 450px; */
}
h2{
  font-family: 'GrouchITCbyBT';
  /* font-size: 56px; */
  font-size: 64px;
  line-height: 1;
  margin-top: 40px;
}
h3{
  font-size: 24px;
  margin: 20px 0 100px;
}
#copyright{
  margin-top: 1em;
  font-size: 12px;
}
/* Large devices (desktops, less than 1600px) */
@media (max-width: 1689px) {
  h2{
    font-size: 36px;
  }
  h3{
    font-size: 18px;
  }
}

/* Large devices (desktops, less than 1200px) - Ipad landscape*/
@media (max-width: 1199px) {
  #anim{
    width: 24vw;
  }
}

/* Medium devices (tablets, less than 992px) - Ipad portrait*/
@media (max-width: 991px) {

}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
  #anim{
    display: none;
  }
  #logo {
    width: 85%;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 480px) {

}

@font-face {
    font-family: 'GrouchITCbyBT';
    src: url('font/GrouchITCbyBT-Regular.eot');
    src: url('font/GrouchITCbyBT-Regular.eot?#iefix') format('embedded-opentype'),
        url('font/GrouchITCbyBT-Regular.woff2') format('woff2'),
        url('font/GrouchITCbyBT-Regular.woff') format('woff'),
        url('font/GrouchITCbyBT-Regular.ttf') format('truetype'),
        url('font/GrouchITCbyBT-Regular.svg#GrouchITCbyBT-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
