@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.ttf);
  font-family: OpenDysloexic;
  src: url(../fonts/OpenDyslexicAlta-Regular.otf);
}

body {
  font: Roboto;
  background: #f1f2f6;
  background: linear-gradient(to right, #ffff00, #ffff00,  #ffff00, #ff0000);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.left {
  left: 0;
}

.right {
  right: 0;
}

.margin-left-50 {
  margin-left: 50px;
}

.margin-right-50 {
  margin-right: 50px;
}

.color-red {
  color: #ff0000;
}

.color-white {
  color: #fff;
}

.background-red {
  background: #ff0000;
}

.background-white {
  background: #fff;
}

.gradient-top {
  width: 100%;
  height: 30%;
  position: absolute;
  top: -1px;
  background: linear-gradient(to bottom, rgba(241, 242, 246, 1), rgba(241, 242, 246, .6), rgba(241, 242, 246, 0));
}

.gradient-bottom {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: -1px;
  background: linear-gradient(to bottom, rgba(241, 242, 246, 0), rgba(241, 242, 246, .6),  rgba(241, 242, 246, 1));
}

.title-container {
  width: 100%;
  display: flex;
  margin: 100px 0 50px 0;
  z-index: 1;
}

.title-container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 80%;
  height: 70px;
  box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.7);
}

.title-container .title h2 {
  font-family: OpenDysloexic;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

.italic {
  font-style: italic;
}

@media screen and (max-width: 1024px) {
  .gradient-top {
    height: 20%;
  }
  .gradient-bottom {
    height: 40%;
    background: linear-gradient(to bottom, rgba(241, 242, 246, 0), rgba(241, 242, 246, .8),  rgba(241, 242, 246, 1));
  }


  .title-container {
    margin: 50px 0 30px 0;
  }
  
  .title-container .title {
    max-width: 270px;
    width: 80%
  }
  
  .title-container .title h2 {
    font-size: 18px;
  }
}