
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #ddd;
    background-image: url('../images/body-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}
.content {
    text-align: center;
}
h1 {
    font-size: 6em; /* Increased font size */
    margin-bottom: 20px;
    color: #fff; /* White color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
p {
    font-size: 1.2em;
    margin-top: 10px;
    letter-spacing: 1px;
    line-height: 1.6;
}