@font-face {
    font-family: 'Faber Sans';
    src: url('fonts/FaberSansPro-Normal.woff2') format('woff2'),
         url('fonts/FaberSansPro-Normal.woff') format('woff');
}

body {
    margin: 0;
}

p {
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
}

button {
    background: none;
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
}

.header {
    height: 178px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 10px 0 10px;
    border-bottom: 4px solid #ff3737;
    background: white;
    position: sticky;
    top: 0;
}

.logo img {
    float: left;
    height: 150px;
    margin-right: 0px;
}
.logo p {
    position: absolute;
    letter-spacing: 4.5px;
    top: 100px;
    left: 58px;
    float: left;
    font-size: 20px;
    font-family: Faber Sans;
}

.navigation {
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.navigation button {
    border-bottom: none;
    border-top: none;
    border-left: none;
    border-right: 3px solid #ff3737;
    border-radius: 0;
    transform: skewX(-10deg);
    margin-bottom: 0;
    height: 178px;
    min-width: 140px;
    line-height: 0.1;
    background: #fff;
    backface-visibility: hidden;
    box-sizing: border-box;
    color: #212121;
    cursor: pointer;
    display: inline-block;
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.01em;
    padding: .875rem 1.125rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: transform .2s;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.navigation button.first {
    border-left: 3px solid #ff3737;
}

.navigation button:hover {
  background-color: #eddbdb;
}

.navigation button:active {
  background-color: #d6c2c2;
  box-shadow: none;
}

.navSpan {
    display: inline-block;
    transform: skewX(10deg);
    font-family: 'Faber Sans';
    font-size: 30px;
}

.address {
    width: 220px;
    margin-right: 20px;
}

.address p{
    text-align: center;
    margin: 3px;
    color: #000;
    display: inline-block;
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
    font-size: 25px;
    font-weight: 400;
}

#intro img {
    width: 40%;
    height: 400px;
    float: right;
    margin-right: 30px;
}

#intro {
    text-align: center;
    height: 400px;
    margin-bottom: 0;
}

#introNav {
    align-content: center;
}

#intro button {
    font-weight: 600;
    color: #fff;
    background: #f15858;
    border: none;
    border-radius: 20px;
    min-height: 55px;
    padding: 9px;
    font-size: 30px;
}

#introOr {
    margin: 5px 0 5px 0;
    font-size: 25px;
}

#introHeader {
    font-size: 47px;
    font-weight: 600;
}

#about {
    margin: 0px 90px 30px 90px;
}

#about p {
    font-size: 22px;
    font-weight: 440;
}

#startButton {
  padding-left: 4px;
  margin-left: auto;
  margin-right: auto;
  display:block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 3px solid black;
  background: white;
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: -30px;
}

a:link {
    color: black;
    text-decoration:none
}

a:visited {
    color: black;
    text-decoration:none
}

a:hover {
    color: black;
    text-decoration:none
}

a:active {
  color: black;
  text-decoration:none
}

@media screen and (width <= 900px) {
    .logo {
        display: flex;
        width: 100%;
        text-align: center;
        flex-wrap: nowrap;
    }

    .logo img {
        height: 120px;
        margin: 0 auto;
    }

    .logo p {
        position: static;
        display: block;
        font-size: 16px;
        text-align: center;
        margin-top: -10px;
    }

    .navigation {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .header {
        height: auto;
        position: unset;
    }

    .navigation button {
        min-height: 50px;
        margin-bottom: 10px;
        height: auto;
        font-size: 20px;
        padding: 10px;
        border: none;
    }

    .navigation button.first {
        border: none;
    }

    #intro button {
        font-size: 25px;
    }

    #about {
        margin: 0 5px 30px 5px;
    }

    .footer {
        height: 80px;
    }

    .footer p {
        font-size: 23px;
    }

    .address {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .address p {
        font-size: 18px;
    }

    #intro img {
        display: none;
    }
}

.footer {
    height: 60px;
    background: #ffc8c8;
    text-align: center;
    border-top: 3px solid #fb5d5d;
    margin-top: 80px;
}

.footer p {
    font-family: 'Faber Sans';
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    color: #222;
}