@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700&display=swap');

*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Raleway', sans-serif;
  width: 100%;
  height: 100vh;
}

body {
  width: 100%;
  max-width: 48rem;
  margin: 2rem auto;
}

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

img.logo {
    width: 100px;
}

nav.navigation {
    display: flex;
    flex-direction: row;
}

nav.navigation li {
    list-style: none;
    margin: 0 .5em;
}

nav.navigation li a {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all .35s ease-in-out;
}

nav.navigation li a:hover {
    border-bottom: 3px solid #ef2f24;
    
}

section.container {
    text-align: center;
    margin: 1.5em auto;
}

section.container img {
    display: block;
    width: 405px;
    margin: 0.5em auto;
}

section.container p {
    font-weight: 500;
    font-size: 1em;
}

footer {
    text-align: center;
    margin: 2em 0;
}

footer p span {
    font-weight: 600;
    line-height: 170%;
}

/* Where to find us styling */



section.container.about {
    text-align: center;
    margin: 4.5em auto;
}

section.container h2 {
    margin: 1em 0;
    margin-bottom: 1.25em;
}

ul.item {
    list-style: none;
    margin: 1em 0;
}

ul.item h3 {
    text-transform: uppercase;
    margin-bottom: 5px;
    border-bottom: 3px solid #ef2f24;
    width: 135px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
}

ul.item li span {
    font-size: 1em;
    font-weight: 600;
    line-height: 170%;
}



/* Media Queries */


@media screen and (max-width: 679px) {
    header {
        flex-direction: column;
        
    }
    
    nav.navigation {
        margin: 0.25em 0;
        margin-top: 1em;
    }
    
    section.container {
        text-align: center;
        margin: 1em auto;
    }
    
    section.container img {
        display: block;
        width: 95%;
        margin: 0.5em auto;
    }
    
    footer {
        text-align: center;
        margin: 1em 0;
    }

    
}