html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* TYPOGRAPHY */

h1 {
    font-family: "hoss-round";
    font-weight: 500;
}

h2 {
    font-family: "hoss-round";
    font-weight: 400;
}

p {
    font-family: "hoss-round";
    font-weight: 300;
}

.largeButton {
    background-color: #ef5152;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 35px;
    padding-right: 35px;
    
    color: #FFFFFF;
    font-family: "hoss-round";
    font-weight: 500;
    font-size: 30px;

    border: none;
    border-radius: 10px;
}

.smallButton {
    background-color: #ef5152;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    
    color: #FFFFFF;
    font-family: "hoss-round";
    font-weight: 500;
    font-size: 15px;

    border: none;
    border-radius: 10px;
}

button:hover {
    background-color: #FFFFFF;
    color: #ef5152;
}

nav {
    /* Add breathing room around nav bar links, assign font */
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 20px;
    font-family: "hoss-round";
    font-weight: 400;


    /* Removes white space on edges/bleed of website */
    margin-left: -10px;
    margin-right: -10px;


    /* Nav bar drop shadow effects */
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Ensure the nav stays above all other content on pages */
    z-index: 1000;

    /* Make the nav bar extend to all of the viewport width */
    width: 100vw;

    /* Follow the user on scroll */
    position: fixed;

    /* Background image */
    background-image: url(Images/NavBarGraphic.png);
    background-size: cover;



}

nav a {
    /* The padding area is what changes color when hovered.
    This gives each nav button a good sized box surrounding it. */
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;

    /* Remove underline from link */
    text-decoration: none;
    color: #243340;
}

nav a:not(:has(img)):hover {
    background-color: #ef5152;
    color: #FFFFFF;
}

/* Move logo image to the left corner of the nav bar */
nav img {
    margin-left: -25px;
}

#photoGrid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds spacing between items */
    justify-content: center; /* Centers the grid */
}

#photoGrid img {
    width: calc(50% - 20px); /* Two items per row with gap adjustment */
}

#lastParagraph {
    padding-bottom: 100px; /* A little extra spacing at the bottom of the last paragraph on the home page */
}