/* style.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    color: #fff;
}

header {
    background: #000;
    text-align: center;
    padding: 1em;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

.main-banner {
    position: relative;
    height: 70vh;
    background: url('/path/to/844969.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 1em 2em;
    text-align: center;
    border-radius: 10px;
}

.main-banner h2 {
    font-size: 2em;
}

.monster-highlight {
    padding: 2em;
    text-align: center;
}

.monster-highlight h2 {
    margin-bottom: 1em;
    font-size: 2em;
}

.monster-highlight .monster-image {
    width: 300px;
    height: 300px;
    background: url('/path/to/wp4578366-monster-hunter-world-anjanath-wallpapers.png') no-repeat center center/contain;
    margin: 0 auto;
    border: 5px solid #fff;
    border-radius: 15px;
}

footer {
    background: #000;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
}
