* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('your-background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    max-width: 1200px;
    display: grid;
    grid-template-rows: auto 300px auto 1fr auto;
    gap: 20px;
    grid-template-columns: 1fr;
}

header {
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

h1 {
    font-size: 2.5rem;
}

.hero-image {
    height: 300px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
}

.content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

article {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

footer {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}