
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: black;
    color: white;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    background: url('https://i.imgur.com/2G5psnS.jpg') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero span {
    color: #00ffff;
}

.hero .btn {
    margin-top: 20px;
    background-color: #ff4d4f;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background-color: #e63e3e;
}

.content {
    padding: 60px 20px;
    background: #111;
}
