body {
    background-color: rgba(24, 24, 24, 1);
    font-family: "Ubuntu", sans-serif;
}

.content {
    padding: 10px;
    max-width: 900px;
    margin: auto;
}

.heading {
    height: 5rem;
}

.heading > div:first-of-type {
    font-family: "Archivo Black";
    font-weight: 400;
    font-style: bold;
    font-size: 2.25rem;
    color: white;
}

.header-image {
    height: 5rem;
}

.header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
}

.content .header .subheading {
    display: flex;
}

.heading .email {
    margin-top: -10px;
    padding-left: 10px;
    color: white;
}

.heading .email a {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff6f;
    text-decoration: none;
}

.navigation {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    border-top: 3px solid white;
    padding-top: 12px;
}

.navigation > div {
    font-weight: 400;
    margin-left: 15px;
    margin-right: 15px;
    color: white;
}

.navigation > div {
    font-weight: 400;
    margin-left: 25px;
    color: white;
}

.navigation > div:hover {
    text-decoration: underline;
    text-decoration: none;
    cursor: pointer;
}

.navigation > div {
    position: relative;
    text-decoration: none;
}

.navigation > div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 100%;
    background: white;
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.navigation > div:first-of-type::after {
    transform-origin: left;
}

.navigation > div:last-of-type::after {
    transform-origin: right;
}

.navigation > div:hover::after {
    transform: scaleX(1);
}

.info {
    padding-top: 5rem;
    color: white;
}

.info .section-title {
    font-weight: 400;
    font-family: "Ubuntu";
    font-size: 3rem;
    font-decoration: underline;
}

.info .section-text {
    margin-top: 5px;
    font-weight: 300;
    font-family: "Ubuntu";
    font-size: 1.5rem;
    line-height: 1.8rem;
}

.info .tagline {
    font-weight: 400;
    font-size: 2rem;
    padding-left: 4px;
    padding-bottom: 5rem;
}

.title {
    font-weight: 800;
    font-size: 6rem;
}

.small-screen-only {
    display: none;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.1;
}

.footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #ffffff3b;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.subtle {
    text-decoration: underline;
    font-style: none;
    color: lightblue;
    font-weight: 500;
}

#clients .section-box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	align-content: stretch;
    margin-top: 2rem;
}

img.client-image {
    width: 128px;
    height: 128px;
    transition: filter 300ms ease;
    border-radius: 15px;
    margin: 0.5rem;
}

@media (max-width: 800px) {
    .heading {
        display: none;
    }
    .subheading {
        width: 100%;
    }
    .navigation {
        width: 100%;
    }
    .small-screen-only {
        display: block;
    }
    .info {
        padding-top: 8rem;
    }
}