@font-face{
  font-family: "FiraSans";
  src: url('./assets/fonts/fira-sans/FiraSans-Regular.otf');
  font-weight: 400;
}

html{
  margin: 0;
}

body{
  margin: 0;
  height: 100vh;
  width: 100vw;
  /* background: #ffaa00; */
  background: #efe2cc;
}

.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  
}
.flex--column{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex--center_center{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex--center_spacebetween{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#content{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 15px;
}
#content svg{
  max-width: 500px;
  width: 100%;
}
#content h1{
  color: #EA2029;
  font-size: 4em;
  font-family: 'FiraSans';
  font-weight: 400;
}
#content *{
  fill: #EA2029;
}
footer{
  min-height: 12%;
  -ms-flex-preferred-size: 12%;
      flex-basis: 12%;
  background: #EA2029;
  color: white;
  padding: 15px;
}
footer section{
  /* flex-basis: 25%; */
}
footer section svg{
  width: 40px;
  height: 50px;
  margin-left: 10px;
  margin-right: 15px;
}
footer section path{
  fill: white !important;
}
footer section p{
  font-family: 'FiraSans';
  font-size: 20px;
}
footer section p a{
  color: white;
  text-decoration: none;
}
  
@media screen and (max-width: 1250px){
  body{
    height: inherit;  
  }
  footer{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer section{
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    min-width: 50%;
  }
  footer section.flex--center_center{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px){
  footer section{
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-width: 100%;
  }
}
@media screen and (max-width: 700px){
  #content h1{
    font-size: 3em;
  }
}
@media screen and (max-width: 700px){
  #content h1{
    font-size: 2em;
  }
  #content svg{
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 415px){
  footer section p{
    font-size: 18px;
  }
}
@media screen and (max-width: 350px){
  footer section p{
    font-size: 16px;
  }
}