/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: black; /* Black background */
}

/* Center the content vertically and horizontally */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Heading Styling */
.heading {
    font-size: 5rem; /* Large font size */
    font-weight: bold;
    color: white; /* White text */
    text-align: center;
    text-transform: uppercase; /* Capitalize text */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
    animation: bounce 2s infinite; /* Bounce animation */
}

/* Goldenrod color for brand name */
.brand-name {
    color: goldenrod;
}

/* Bouncing Effect */
@keyframes bounce {
    0% {
        transform: translateY(0); /* Initial position */
    }
    25% {
        transform: translateY(-20px); /* Move up */
    }
    50% {
        transform: translateY(0); /* Return to original position */
    }
    75% {
        transform: translateY(-10px); /* Slight move up */
    }
    100% {
        transform: translateY(0); /* Return to original position */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 4rem; /* Slightly smaller on tablets */
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 3rem; /* Smaller on mobile */
        padding: 10px;
    }
}
