.primary-color {
    color: #052F5F;
}

.secondary-color {
    color: #78C0E0;
}

.ternary-color {
    color: #449DD1;
}

.button {
    background-color: #052F5F;
    padding: 0.3em;
    color: white;
    outline: 1px solid white;
    outline-offset: -0.1em;
    font-family: "Roboto";
    box-shadow: 10px 10px 100px black;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: aliceblue;
    font-family: "Roboto";
}

.left-border {
    border-left: 0.15em solid #78C0E0;
    padding-left: 0.3em;
}

.content-width {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.header {
    width: 100%;
    /*
    border-bottom: 0.3em solid #78C0E0;*/
    box-shadow: 0px 1px 100px;
    z-index: 1000;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    background-color: #052F5F;
}

.header-heading {
    margin: 0;
    color: white;
    font-family: "Roboto";
    letter-spacing: 0.05em;
}

.theme {
    position: relative;
}

.theme-img {
    width: 100%;
}

.theme-text {
    position: absolute;
    top: 50%;
    left: 5%;
    font-size: 2.7em;
    font-weight: 100;
}

.article {
    margin-top: 8%;
}

.article-heading {
    font-size: 1.8em;
    
}

.article-text{
    margin-top: 4%;
    font-size: 1.5em;
    font-weight: 100;
    letter-spacing: 0.02em;
    line-height: 1.2em;
}

.location{
    margin-top: 8%;
}

.location-heading{
    font-size: 1.8em;
    margin-bottom: 4%;
}

.location-map {
    margin-top: 4%;
    width: 100%;
    height: 25em;
    background-color: #052F5F;
    outline: 1px solid white;
    outline-offset: -0.2em;
    padding: 0.3em;
}

.location-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17em;
    margin: 0 auto;

    background-color: #052F5F;
    padding: 0.3em;
    color: white;
    outline: 1px solid white;
    outline-offset: -0.2em;
    margin-bottom: 2%;
}

.location-contact span {
    font-size: 1.3em;
    font-style: italic;
    padding-left: 1em;
    font-weight: 100;
}

.location-contact a {
    font-size: 1.3em;
    font-style: italic;
    padding-left: 1em;
    font-weight: 100;
    color: white;
}

.footer {
    margin-top: 6%;
    width: 100%;
    background-color: black;
    color: gray;
    font-style: italic;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 1em;
    font-size: 1.2em;
    box-shadow: 0px 1px 100px;
}


@media (max-width: 1100px) {
    .header-heading{
        margin-left: 0.5em;
    }
    .article {
        padding: 0 1em;
    }
    .location {
        padding: 0 1em;
    }
}

@media (max-width: 850px) {
    .theme-text{
        top: 40%;
        font-size: 2em;
    }
    .article-text {
        font-size: 1.1em;
    }
    .footer {
        font-size: 1em;
    }
}

@media (max-width: 500px) {
    .header-heading {
        font-size: 1.7em;
    }
    .theme-text{
        top: 30%;
        font-size: 1.7em;
    }
    .article-text {
        font-size: 1em;
    }
    .article-heading {
        font-size: 1.5em;
    }
    .location-heading {
        font-size: 1.5em;
    }
    .location-contact {
        width: 12em;
    }
    .location-contact span {
        font-size: 1em;
    }
    .location-contact a {
        font-size: 1em;
    }
    .location-contact img {
        width: 35px;
    }
}

@media (max-width: 400px) {
    .theme-text{
        font-size: 1.2em;
    }
    
}