@font-face {
    font-family: 'futura_maxi_stdlight';
    src: url('fonts/futuramaxistd-light-webfont.woff2') format('woff2'),
         url('fonts/futuramaxistd-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* @font-face {
    font-family: 'futura_maxi_stdbook';
    src: url('fonts/futuramaxistd-book-webfont.woff2') format('woff2'),
         url('fonts/futuramaxistd-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} */

@font-face {
    font-family: 'futura_maxi_stddemi';
    src: url('fonts/futuramaxistd-demi-webfont.woff2') format('woff2'),
         url('fonts/futuramaxistd-demi-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'futura_maxi_stdbold';
    src: url('fonts/futuramaxistd-bold-webfont.woff2') format('woff2'),
         url('fonts/futuramaxistd-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body {
    padding: 0;
    margin: 0;
    font-family: 'futura_maxi_stdlight';
    line-height: 1.8em;
}

.intro {
    min-height: 100vh;
    height: auto;
    width: 100%;
    background-color: #FDE1E1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("images/background.svg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}
.container {
    width: 100%;
    max-width: 960px;
    padding: 50px;
    box-sizing: border-box;
}
.subheader {
    font-family: 'futura_maxi_stddemi';
}
a {
    color: black;
    text-decoration: none;
}
a:hover {
    color: black;
    text-decoration: underline;
}

h1 {
    font-family: 'futura_maxi_stdbold';
    font-size: 24px;
}
h2 {
    font-family: 'futura_maxi_stdbold';
    font-size: 24px;
}

.caller {
    color: #000;
    font-weight: bold;
    background-color: #A4DBDA;
    font-family: 'futura_maxi_stdbold';
    padding: 5px;
}
.caller:hover {
    background-color: #FFF;
    text-decoration: none;
}



/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
    .intro {
        background-position: 0 0;
        background-image: url(images/background-mob.svg);
        background-attachment: fixed;
        position: relative;
    }
}