* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #ff69b4;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
    position: relative;
    float: right;
    margin-top: 10px;
}

header li {
    display: inline;
    padding: 0 15px 0 15px;
}

.hero {
    background: url('https://img.alicdn.com/tfs/TB1GmKuQXXXXXcLXFXXXXXXXXXX-1920-1080.jpg');
    height: 400px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
}

.posts {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.posts article {
    margin-bottom: 20px;
}

.posts h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.posts p {
    font-size: 16px;
    margin-bottom: 10px;
}

.read-more {
    background-color: #ff69b4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}