/* style.css */

@font-face {
  font-family: 'xpress';
  src: url('./webfontkit/xpress-extralight.eot'); /* IE9 Compat Modes */
  src: url('./webfontkit/xpress-extralight.eot?iefix') format('embedded-opentype'), /* IE6â€“IE8 */
       url('./webfontkit/xpress-extralight-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('./webfontkit/xpress-extralight-webfont.woff') format('woff'), /* Modern Browsers */
       url('./webfontkit/xpress-extralight.ttf') format('truetype'), /* Safari, Android, iOS */
       url('./webfontkit/xpress-extralight.svg') format('svg'); /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, p {
  text-align: center;
}

body {
  font-family: xpress;
}

#restorium {
    display: block;
    margin: auto;
}

#center-content {
  text-align: center;
  padding: 7px;
}

#page {
  border: 2px solid lightgrey;
  border-radius: 8.5px;
  display: block;
  width: 50%;
  margin: auto;
  box-shadow: 5px 5px;
}


.aqua-nav {
  position: relative;
  background-color: #ff0000;
  border-radius: 6px 6px 0px 0px;
  border-bottom: 1px solid #000;
  padding: 1.2em;
  padding-right: 0px;
  padding-left: 0px;
  color: white;
  font-family: xpress;
  background-image: url("./nav-text.png");
  background-repeat: repeat-x;
}

.aqua-nav li {
  cursor: pointer;
  text-shadow: 0 1px 1px #00000050;
  transition: transform 0.2s ease;
}


.aqua-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 0;
}

.aqua-nav ul a {
  text-decoration: none !important; 
  color: #fff;
}
.aqua-nav li:hover {
  transform: scale(1.05);
}

.blog {
  border: 2px solid black;
  display: block;
  width: 90%;
  margin: auto;
  padding: 1em;
}

 /* The animation code */
@keyframes example {
  0%   {background-color: red;}
  25%  {background-color: yellow;}
  50%  {background-color: blue;}
  75% {background-color: green;}
  100%{background-color: red;}
}

/* The element to apply the animation to */
body {
  width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  #div1 {animation-timing-function: linear;}
} 


