/* General */
body {
    background-color: #E94560;
    padding: 0px;
    margin: 0px;
}

h1, h2, h3, p {
    font-family: 'Roboto', sans-serif;
}

/* Custom Classes */
.cover {
    height: 100vh;
    width: 100%;
}

.maxh {
    height: 100vh;
}

.text-center {
    justify-content: center;
}

.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.info-col {
    background-color: #ffffff;
    padding: 5em;
}

.research-itm {
    background-color: #fff;
    margin-top:10px;
    padding:10px;
    color: #000;
    border-radius: 15px;
}

/* Animations */
@keyframes rotate {
    25% { 
      -webkit-transform: rotate(20deg);
    }
    75% {
        -webkit-transform: rotate(-20deg);
    }
  }
  
  img.bannerImg {
      animation-name:            rotate; 
      animation-duration:        2.0s; 
      animation-iteration-count: infinite;
      animation-timing-function: ease;
      /* animation-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035); */
  }
  