
* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: black;
}

main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 550px 700px auto;
    grid-template-areas:
        "header header header header"
        "hero hero hero hero"
        "early style records offpitch"
        "footer footer footer footer";
    gap: 0;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0;
}

#header {
    grid-area: header;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    align-self: center;
    border: 1px solid black;
}

#hero {
    grid-area: hero;
    border: 1px solid black;
}

#hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#early { 
    grid-area: early; 
    padding: 10px; 
    border: 1px solid black; 
}
#style { 
    grid-area: style; 
    padding: 10px; 
    border: 1px solid black; 
}
#records { 
    grid-area: records; 
    padding: 10px; 
    border: 1px solid black; 
}
#offpitch { 
    grid-area: offpitch; 
    padding: 10px; 
    border: 1px solid black; 
}

#early h2, #style h2, #records h2, #offpitch h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

#early p, #style p, #records p, #offpitch p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

#footer {
    grid-area: footer;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding: 10px;
    border: 1px solid black;
}
