@font-face {
    font-family: 'RalewayRegular';
    src: url('../fonts/raleway-regular.woff2');
}

html {
    background-color: #fff;
    color: #525252;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'RalewayRegular';
    padding: 4rem;
}
h1 {
    background: url('../img/cubito_logo_500x86.png') no-repeat;
    background-size: contain;
    width: 500px;
    height: 86px;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    max-width: 80%;
}
h2 {
    font-weight: 400;
    text-align: center;
}

p {
    text-align: center;
}

.fadesIn {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}