/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body */
body {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    min-height: 100vh;
    text-align: center;
}

/* Navigation */
nav {
    margin-bottom: 50px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4c4c;
}

/* Headings */
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff4c4c;
    text-shadow: 2px 2px #000;
}

h2 {
    font-size: 1.8rem;
    margin: 15px 0;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Button */
button {
    background: #ff4c4c;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    background: #ff1f1f;
    transform: scale(1.05);
}
