
body {
  background-color: #f4efe8;
  font-family: sans-serif;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1 {
    color: #000080;
    background-color:#f4efe8;
    font-family:'TiemposHeadline';
    font-size: 100px;
    font-weight: 50;
    font-stretch: ultra-condensed;
    transform: scaleX(0.9);
    margin: 0;
    padding: 0;
}
h2{
    color: #000080;
    background-color:#f4efe8;
    font-family:'TiemposHeadline';
    font-size: 100px;
    font-weight: 50;
    font-stretch: ultra-condensed;
    transform: scaleX(0.9);
    margin: 0;
    text-align: center;
}

h3{
    color: #000080;
    background-color:#f4efe8;
    font-family:'TiemposHeadline';
    font-size: 100px;
    font-weight: 50;
    font-stretch: ultra-condensed;
    transform: scaleX(0.9);
    justify-items: center;
    margin: 0;
    text-align: center;
}

.centered-text {
    text-align: center;
    padding: 20px;
    background-color: #f4efe8;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: center;
}

.j-text {
    color: #000080;
    font-family:'TiemposHeadline';
    font-size: 200px;
    font-weight: 3;
    font-stretch: ultra-condensed;
    transform: scaleX(0.9);
    padding: 0px;
    font-style: italic;
}

p {
    font-family: 'TiemposHeadline';
    color: #000080;
    text-align: center;
}



.spacer{
    padding: 200px;
}

.big-spacer{
    padding: 300px;
}

.content {
  padding: 100px 20px;
  background-color: #f4efe8;}








.contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 40px;
  margin: 50px 0;
}

.contact-icons a {
  color: #000080;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #5d5d9898;
}

ul {
  list-style-type: square; 
  padding-left: 150px;
  font-family: 'TiemposHeadline';
  color:#000080;
  max-width: 800px;
  margin: 0 auto;
}

li {
  margin-bottom: 8px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.line-divider {
    border: none;
    height: 2px;
    background: #000080;
    width: 100%;
    margin: 10px auto;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}


.character-text {
    font-size: 17px;
}

.characters-div {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.scroll-container {
  overflow: hidden;
  width: 100vw;
  background: transparent;
  padding: 30px;
}

.scroll-content {
  display: flex;
  width: 300%;
  animation: scroll-left 12s linear infinite;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transform: translateZ(0) scale(1);
  box-sizing: border-box;
}

.scroll-content .nav-text {
  display: flex;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  justify-content: space-around;
  padding: 0 45px;
  transform: translateZ(0) scale(1);
  box-sizing: border-box;
}

.scroll-content .nav-text a {
  color: #000080;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  font-family: 'TiemposHeadline';
  transition: color 0.3s ease;
  white-space: nowrap;
}

.scroll-content .nav-text a:hover {
  color: #5d5d9898;
}

.scroll-container:hover .scroll-content {
  animation-play-state: paused;
}


@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}

@font-face {
    font-family: 'TiemposHeadline';
    src: url('TiemposHeadline-Regular.woff2');
    font-weight: 100;
    font-style: normal;
}



@media (max-width: 768px) {
  h1 {
    font-size: 60px;
  }
  
  h2 {
    font-size: 60px;
    padding-left: 0;
    text-align: center;
  }
  
  h3 {
    font-size: 60px;
  }
  
  .j-text {
    font-size: 120px;
  }
  


  
  .spacer {
    padding: 80px;
  }
  
  .big-spacer {
    padding: 120px;
  }
  
  .content {
    padding: 60px 15px;
  }
  
  .contact-icons {
    gap: 20px;
    font-size: 30px;
    margin: 30px 0;
  }
  
  ul {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  

  
  .centered-text {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}



@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 40px;
    padding-left: 0;
    text-align: center;
  }
  
  h3 {
    font-size: 40px;
  }
  
  .j-text {
    font-size: 80px;
  }
  

  
  .spacer {
    padding: 50px;
  }
  
  .big-spacer {
    padding: 80px;
  }
  
  .content {
    padding: 40px 10px;
  }
  
  .contact-icons {
    gap: 15px;
    font-size: 25px;
    margin: 20px 0;
  }
  
  ul {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  

}