/* style.css */

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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.banner-img {
    width: 100%;
    height: auto;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.text-overlay p {
    font-size: 18px;
}

.text-overlay h1 {
    font-size: 40px;
    margin: 10px 0;
}

.cta-button {
    background-color: #00c853;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.register-btn {
    background-color: #ff6f00;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Ball Section */
.ball-section {
    margin-top: 30px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ball-img {
    width: 150px;
    height: auto;
}

.ball-text {
    margin-top: 20px;
}

.ball-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.ball-text p {
    font-size: 18px;
    margin: 10px 0;
}

.footer {
    margin-top: 30px;
    background-color: #222;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer a {
    color: #ff6f00;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.cta-button {
    background-color: #00c853;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .banner .text-overlay h1 {
        font-size: 30px;
    }

    .ball-text h2 {
        font-size: 28px;
    }

    .ball-text p {
        font-size: 16px;
    }

    .cta-button, .register-btn {
        font-size: 16px;
    }
}
