@charset "UTF-8";
/* CSS Document */

body {
  background: linear-gradient(#424e63, #3b282a)
}

.frame {
  width: 900px;
  height: 675px;
  background: url("field.png");
  margin: 0px auto;
  position: relative;
  top: -10px;
     opacity: 0;
        -webkit-animation: fadeIn 1s; /* Chrome, Safari, Opera */
        animation: fadeIn 1s;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;
}

p {
  font-family: aliceregular;
  font-size: 20px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  line-height: 1.2;
  text-align: center;
  top:10px;
     opacity: 0;
        -webkit-animation: fadeIn 2s; /* Chrome, Safari, Opera */
        animation: fadeIn 2s;
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;
}

a {
  font-family: aliceregular;
  text-decoration: none;
  color: white;
  text-shadow: 2px 2px 2px black;
  font-size: 50px;
  left: 620px;
  position: relative;
  top: 90px;
    opacity: 0.5;
	-webkit-transform:2s;
	transition: 2s;   opacity: 0;
        -webkit-animation: fadeIn 6s; /* Chrome, Safari, Opera */
        animation: fadeIn 6s;
        -webkit-animation-delay: 6s;
        animation-delay: 6s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;
}

a:hover{
  opacity: 1;
}

@font-face {
    font-family: 'spicy_riceregular';
    src: url('spicyrice-regular-webfont.woff2') format('woff2'),
         url('spicyrice-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'aliceregular';
    src: url('alice-regular-webfont.woff2') format('woff2'),
         url('alice-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Standard syntax */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
} 