/* Custom CSS - 12uno DevWorks - 2025 */

/* Animations */

@keyframes backgroundColorAnimation {
  0% {
    background-color: #ABDDC4;
    /* Start color */
  }

  50% {
    background-color: #ABAFDD;
    /* Middle color */
  }

  100% {
    background-color: #ABDDC4;
    /* End color (back to start) */
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  animation: backgroundColorAnimation 20s ease-in-out infinite;
  background-color: #ABB4DD;
}

.site-container {
  padding: 20px 0 20px 0; 
  height: 95vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.logo-section {
  width: 300px;
  height: 150px;
  
  background-image: url('src/12uno-logo-div.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-section {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.contact-link {
  color: #000000;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

footer > p {
  margin: 0;
  font-size: 0.6rem;
}