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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container Styling */
.container {
    max-width: 800px;
    padding: 20px;
}

/* Heading Styling */
h1 {
    font-size: 6rem; /* Big and bold */
    font-weight: bold;
    color: #ffffff; /* White */
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Paragraph Styling */
p {
    font-size: 1.5rem;
    color: #bbbbbb; /* Light grey */
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 4rem; /* Smaller on tablets */
    }

    p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem; /* Smaller on mobile */
    }

    p {
        font-size: 1rem;
    }
}