body {
    font-family: Futura PT, sans-serif;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0 10rem;
    font-size: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    border-radius: 10px;
    margin-right: 10px;
}

nav a:hover {
    color: white;
    background-color: lightgray;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    height: 4rem;
    margin-right: 10px;
}

.link-icons {
    border: none;
    display: flex;
}

.icon img {
    max-height: 20px;
}

ul {
    display: flex;
    list-style-type: none;
}

li {
    margin: 0 1rem;
}

a {
    text-decoration: none;
    color: black;
}

.hero {
    width: 100%;
    height: 100%;
    background: grey;
    font-size: 5vw;

    /* bg image */
    background-image: url('../images/jake-walker-0QZOCgk10w4-unsplash.jpg');
    background-size: cover;

    /* flexbox to center text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: whitesmoke;
}

h2 {
    font-size: 2rem;
    text-align: center;
}

.CTA {
    height: 60px;
    width: 225px;
    background-color: lightgray;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 5px auto;
    color: black;
    padding: 10px;
    border-radius: 10px;
}

.CTA:hover {
    color: white;
    background-color: lightgray;
}

.gallery {
    max-width: 1200px;
    margin: 20px auto;
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box {
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.box img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-height: 175px;
    max-width: auto;
    margin: 0 50px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: lightgray;
    padding: 20px 0;
    height: 250px;
}

.footer-logo img {
    max-height: 50px;
    height: auto;
}

.footer-link-icons {
    display: flex;
    margin-top: 10px;
}

.footer-link-icons .icon {
    margin: 0 10px;
}

.footer-link-icons img {
    max-height: 30px;
    height: auto;
}