/* styles.css - DataVanguard3 */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 50px 0;
    border-bottom: 2px solid #fff;
}

h1 {
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #ccc;
}

nav {
    text-align: center;
    padding: 20px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 15px;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #999;
}

/* Article Section */
.articles {
    margin-top: 50px;
}

.article {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.article:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.2);
}

.article h2 {
    color: #fff;
    font-size: 2em;
}

.article p {
    color: #ddd;
}

/* Button */
button {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: white;
    color: black;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 2px solid #fff;
    color: #999;
}
