@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300&display=swap');
html body {
    margin: 0px auto;
    padding: 0px;
    background-color: rgba(0, 0, 0, .1);
    box-sizing: border-box;
}

.nav-header {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    color: white;
    background-color: rgb(46, 46, 46);
    height: 2.5rem;
    border-bottom: 1px solid red;
}

.navLinks,
.navLinks:visited {
    margin-left: auto;
    margin-right: 2rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1rem;
}

.navLinks:hover {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid red;
}

#feature {
    background-color: rgba(0, 0, 0, .5);
    background-image: url(../images/computer-blur.jpg);
    background-blend-mode: multiply;
    max-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position-y: -45px; */
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 1rem 3rem;
    width: 100%;
}

.logo {
    max-height: 7rem;
}

#feature img {
    max-width: 100%;
}

.tag-line {
    margin-top: 1.5rem;
    font-size: 2rem;
}

.items {
    font-family: 'Montserrat', sans-serif;
    border: 0.5px solid gray;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
    background-color: white;
    margin-bottom: 1.5rem;
    min-height: 20rem;
}

.items img {
    height: 40px;
    width: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.items h4 {
    margin-top: 10px;
    border-bottom: 1px solid red;
    font-size: 20px;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.footer {
    margin-top: 2.5rem;
    background-color: rgb(46, 46, 46);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0.3rem 0;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: white;
    margin: 0.5rem;
}

.social-media > a,
.social-media > a:hover {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.social-media-image {
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    margin: 0 0.6rem;   
}

.privacy-link, .privacy-link a {
    font-size: 0.8rem;
    color: rgb(131, 131, 131);
    text-decoration: none;
    font-family: 'Montserrat';
}

.privacy-link a:hover {
    text-decoration: underline;
}

#mission-statement {
    font-style: italic;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    padding: 2rem 3rem;
    text-align: center;
    font-family: 'Merriweather';
}

#mission-statement p {
    margin-bottom: 0;
}

@media screen and (max-width: 766px) {
    .tag-line {
        font-size: 1.2rem;
    }

    .items {
        min-height: 1rem;
    }
}