/* Reset the default browser spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* MAIN WEBSITE COLORS AND FONT */

body {
    background-color: #111111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


/* TOP HEADER */

header {
    background-color: #080808;
    padding: 25px 50px;
    border-bottom: 3px solid #f5c400;
}


/* NORTH STAR SPORTS PHOTOGRAPHY AT TOP */

header h1 {
    color: #f5c400;
    font-size: 28px;
    margin-bottom: 20px;
}


/* NAVIGATION MENU */

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}


/* NAVIGATION WORDS */

nav a,
nav span {
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}


/* CHANGE MENU ITEMS TO GOLD WHEN MOUSE IS OVER THEM */

nav a:hover,
nav span:hover {
    color: #f5c400;
}


/* MAIN WEBSITE AREA */

main {
    max-width: 1400px;
    margin: auto;
}


/* GENERAL SECTION SPACING */

section {
    padding: 70px 50px;
}


/* LARGE TOP/HERO SECTION */

section:first-child {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #181818;
}


/* LARGE NORTH STAR TITLE */

section:first-child h2 {
    color: #f5c400;
    font-size: 58px;
    text-transform: uppercase;
    max-width: 800px;
}


/* TEXT UNDER LARGE TITLE */

section:first-child p {
    font-size: 24px;
    margin: 20px 0 30px;
}


/* BUTTONS */

button {
    background-color: #f5c400;
    color: #111111;
    border: none;
    padding: 15px 25px;
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}


/* BUTTON CHANGES WHEN MOUSE IS OVER IT */

button:hover {
    background-color: white;
}


/* SECTION TITLES */

section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-transform: uppercase;
}


/* SPORTS LIST */

section h3 {
    background-color: #1d1d1d;
    border-left: 5px solid #f5c400;
    padding: 25px;
    margin: 15px 0;
    font-size: 24px;
    text-transform: uppercase;
}


/* BOTTOM OF WEBSITE */

footer {
    background-color: #080808;
    border-top: 3px solid #f5c400;
    padding: 30px 50px;
    text-align: center;
    color: #aaaaaa;
}