@font-face {
  font-family: BebasNeue;
  src: url(BebasNeue-Regular.ttf);
}

div {
  font-family: BebasNeue;
}

.container {
  max-width: 900px;       
  margin: 0 auto;        
  padding: 0 20px;       
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;           
    background-color: #ab7070;
    color: rgb(0, 0, 0);
    display: flex;
    z-index: 1000;               
}

header p {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.center-text {
  text-align: center;
}

nav {
    display: flex;
    gap: 20px; 
    justify-content: center;
}

nav a {
    color: Black;
    text-decoration: none;
    margin-left: 0px;
}

nav a:hover {
    text-decoration: underline;
}

.content {
  padding-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
}

html {
  overflow-y: scroll;
}

.trans-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.trans-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.credits {
  display: flex;
  align-items: center;
  gap: 15px;
}

.credits img {
  width: 300px;
  height: auto;
  z-index: 5;
}

.credits text {
  font-size: 15px;
}