@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 0;
  }
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inconsolata-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h1,a,p,h2,h3 {
    font-family: 'Inconsolata';
    color: rgb(0, 0, 0);
}

#cover{
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    width:100%;
    height: 100%;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#cover.hidden {
    opacity: 0;
    pointer-events: none;
}

article {
    width: 80%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0; 
    background-image: 
  linear-gradient(
    to bottom,
    rgb(255, 255, 255),
    #ffffff2b
  ),
  url("../materials/xp.png");
    background-size: auto;
    background-attachment: fixed;
    background-size: cover;
    backdrop-filter: blur(5px);
    background-repeat: repeat;

    animation: 200s linear infinite animatedBackground;
}

.background {
    filter: drop-shadow(black 1px 1px 10px);
    padding-top: 4px;
}

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

h1 {
    font-size: 72px;
}

.author{
    font-size: 16px;
}

p {
    font-size: 18px;
}

article p {
    margin-bottom: 1rem; 
    line-height: 1.6;
}

.window {
    box-shadow: inset -1px -1px #00138c, inset 1px 1px #0831d9, inset -2px -2px #001ea0, inset 2px 2px #166aee,
        inset -3px -3px #003bda, inset 3px 3px #0855dd;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0 0 3px 0;
    -webkit-font-smoothing: antialiased;
    background-color: rgba(255, 252, 201, 0.588);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
}

img {
    transition: transform 0.8s ease;
}

img:hover {
    transform: scale(1.01);
}

@media screen and (max-width: 800px) {
  h1,.author,h2{
      text-align: center;
  }

  h1 {
      font-size: 48px;
  }

  .author{
      font-size: 12px;
  }

  p {
      font-size: 14px;
      text-align: center;
  }
  .image-container{
    flex-direction: column;
  }
  img {
    width: 300px !important;
  }
  .neco {
    width: 8% !important;
  }
}