* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.gradient-background {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(270deg, #FA6E0A, #0299C8);
  background-size: 400% 400%;
  animation: colorShift 12s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 2rem;
}

@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo img {
    height: 300px;
    width: 300px;
    border-radius: 0%;
}

.morsø-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: white;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

.jiu-jitsu-text {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    color: white;
    letter-spacing: 0.1rem;
    margin-top: -5rem;
}

.address-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 0.1rem;
    margin-top: 2rem;
}

.training-schedule {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #FFD633;
  letter-spacing: 0.15rem;
  text-align: center;
  margin: 2rem 0;
}

.training-schedule h3 {
    font-size: 2.5rem;
    color: #FFD633;
    margin-bottom: 0rem;
}

.training-schedule p {
    margin-bottom: 0rem;
    line-height: 1.4;
}

.training-schedule .weekday {
    display: block;
    color: #FFD633;
    font-size: 2.2rem;
    margin-bottom: -3rem;
}

.training-schedule .time {
    display: block;
    color: white
}
.social-links {
    display: flex;
  gap: 2rem; /* spacing between icons */
  margin-top: 0rem;
}

.link-icon {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
}

.link-icon i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.link-icon:hover {
  color: #FFD633;
}
