*{
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
nav{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    font-weight: bolder;
}
nav img{
    height: 70px;
    width: 250px;
}

.container{
    padding: 10px 8%;
}

#header{
    width: 100%;
    height: 450px;
    font-size: 17px;
    background-image: url(img/IMG_20250627_234002.jpg);
    background-size: cover;
    background-position: right;
}

.wel{
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: red;
    padding: 10px;
    margin-top: 20px; 
    animation: moveText 12s linear infinite;
    position: relative; 
}
@keyframes moveText {
    0% {
        right: 100%;
    }
    100% {
        right: -100%;
    }
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}


.header-text.col-1 {
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-top: 10px;
    padding: 20px 20px 20px 40px;
    height: 200px;
    background-color: rgb(147, 147, 205);
    width: 100%;
    border-radius: 15px;
    gap: 20px; 
}
.header-text.col-1 img {
    height: 180%;
    object-fit: contain;
}
.header-text.col-1 .text-content {
    text-align: center;
    flex: 1; 
}

.row {
  display: flex;
  justify-content: center;
  gap: 40px;
}
#competitions{
    margin-top: 50px;
}
.competition {
  width: 400px;
  margin-top: 30px;
}
.competition img {
  width: 100%;
  height: 80%;
  border-radius: 8px;
}
.competition h3 {
  margin-top: 5px;
  font-size: 1.2rem;
  text-align: center;
}

#schedule table{
    margin: 30px auto;
    height: 500px;
    width: 900px;
    border-collapse: collapse;
    text-align: center;
    border: 3px solid blue;
    background-color: bisque;
}

#venue{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: bisque;
}
#venue h1{
    margin-bottom: 20px;
}

#register button{
    padding: 10px;
    width: 200px;
    font-size: 20px;
    position: relative;
    left: 40%;
    background-color: deepskyblue;
    margin-bottom: 100px;
    margin-top: 30px;
    cursor: pointer;
}
#register h1{
   margin-top: 30px;
}

#contact{
    background-color: bisque;
    text-align: center;
    padding: 10px;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
    color: bisque;
}
a{
    color: rgb(99, 99, 157);
}