/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@font-face {
    font-family: "medodica"; 
    src: url("/fonts/medodica.otf") format("opentype");
}

body {
  font-family: "medodica";
  background-image: url("textur.png");
  animation: movement 100s linear infinite;;
}

@keyframes movement {
  from {background-position: top left;}
  to {background-position: bottom right;}
}

h1 {text-align: center; font-size: 64px; color: #a8e61d; text-shadow: 4px 4px #520918}
h2 {text-align: center; font-size: 24px; color:#a8e61d; text-shadow: 4px 4px #520918}
h3 {text-align: right; font-size: 24px; color:#a8e61d; text-shadow: 4px 4px #520918}
p {text-align: left; font-size: 24px; color:#a8e61d; text-shadow: 4px 4px #520918}
div {text-align: center;}
ul {text-align: center;}
li {text-align: center;}

 @font-face { font-family: medodica; src: url('medodica.otf'); }


a:link {
  color: #a8e61d;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #a8e61d;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #8dc410;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #a8e61d;
  background-color: transparent;
  text-decoration: underline;
}

div {
  border-radius: 30px;
  background-color: #000000;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
