@font-face {
    font-family: "GeoSans-Light";
    src: url("fonts/GeosansLight.ttf") format("truetype");
}

body {
    margin: 0;
    padding: 0;
    font-family: "GeoSans-Light", sans-serif;
    font-size: 20px;
}

.navbar {
    box-shadow: 0px 2px 2px #000000aa;
    padding: 0;
}

.navbar-nav {
    font-size: 1.5rem;
    font-family: "GeoSans-Light", sans-serif;
    font-weight: 800;
}

.nav-item {
     padding: 10px;
}

.page-footer {
    background-color: rgb(93, 87, 87);
    color: white;
    line-height: 32px;
    margin-top: 50px;
}

.page-footer img{
    position: relative;
}

.page-footer a{ 
    margin-right: 10px;
}


.custom-flex-container {
    justify-content: flex-end;
    align-items: center;
}

.button {
    background-color: black;
    color: white;
    border-radius: 3em;
    text-decoration: none;
    text-align: center;
    font-size: x-large;
    margin: 0.5em;
    padding: 10px;
}

.button.button-white {
    background-color: white;
    color: black;
    border-radius: 3em;
    text-decoration: none;
    text-align: center;
    font-size: x-large;
    margin: 0.5em;
    padding: 10px;
}

.content-column {
    max-width: 1105px;
    margin: 0 auto;
}

.section-title {
    margin-top: 32px;
    margin-bottom: 32px;
}

.responsive-object {
    position: relative;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px){
    .section-title{
        margin-left: 30px;
    }

    .page-footer img{
        display: flex;
        justify-content: center;
    }
    
    .custom-flex-container {
        justify-content: flex-start;
    }

    .row{
        margin-left: 40px;
    }
}