
@font-face {
    font-family: 'Cantarell';
    font-style: normal;
    src: url('./assets/Cantarell-Regular.ttf');
}

html, body
{
    height: 100%;
    margin:0;
    padding:0;
    font-family: Cantarell;
}

a {
    text-decoration: none;
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logoSmall {
    margin: 50px auto;
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-359deg);
    }
  }