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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #F7F7F7; /* Light Gray Background */
    color: #333333; /* Dark Gray Text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
}

/* Container Styling */
.container {
    padding: 20px;
    max-width: 700px;
    text-align: center;
    background-color: #ffffff; /* White Container Background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Main Text Styling */
.main-text {
    font-size: 3.5rem;
    font-weight: bold;
    color: #4A90E2; /* Soft Blue for Main Title */
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: visible;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Main Text Hover Effect */
.main-text:hover {
    color: #FF6F00; /* Change color to Vibrant Orange on hover */
}

/* Subtext Styling */
.sub-text {
    font-size: 1.2rem;
    color: #333333; /* Dark Gray for Subtext */
    margin-bottom: 120px; /* Added 120px gap between sub-text and announcement */
}

/* Announcement Styling */
.announcement {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4A90E2; /* Soft Blue for Announcement */
    font-weight: bold;
}

/* Description Styling */
.description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333333; /* Dark Gray for Description */
    margin-bottom: 30px;
}

/* Button Styling (if added in future) */
button {
    padding: 10px 20px;
    background-color: #FF6F00; /* Vibrant Orange for Buttons */
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #e65c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-text {
        font-size: 2.8rem;
    }
    .announcement {
        font-size: 1.8rem;
    }
    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: 2rem;
    }
    .sub-text {
        font-size: 1rem;
    }
    .announcement {
        font-size: 1.5rem;
    }
    .description {
        font-size: 0.9rem;
    }
}
