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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f7f8fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #4a90e2, #9013fe);
    color: white;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.1rem;
}

.header a {
    color: #ffd700;
    text-decoration: none;
}

.header a:hover {
    text-decoration: underline;
}

/* Main blog container */
main {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/*
