



@font-face {
    src: url(fonts/Renogare-Regular.otf);
    font-family: renogare;
}

@keyframes wave {
    from {
        translate: 0 0vw;
        scale: 100% 1;
      }
    
      to {
        translate: 0 5vw;
        scale: 100% 1;
      }
}


body {
    font-family: renogare;
    text-shadow: 1px 1px 1px white, -1px 1px 1px white, -1px -1px 1px white, 1px -1px 1px white, 0px 1px 1px white, -1px 0px 1px white, 0px -1px 1px white, 1px 0px 1px white;
    background: url(images/titleBg.png);
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
}

h2 {
    text-align: center;
    max-width: 40%;
    margin: auto;
    margin-top: 15%;
    background: url(images/dreamBlockQM.gif);
    background-size: 100% 100%;
    background-position: center;


    animation-name: wave;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

a:visited {
    color: black;
    text-decoration: none;
}

a:link {
    color: black;
    text-decoration: none;
}