body {
    font-family: "Open Sans", sans-serif;
    background-image: url('https://content.codecademy.com/courses/learn-css-selectors-visual-rules/hypnotize_bg.png');
  }
  
  header {
    padding: 20px 0;
  }
  
  header .row, footer .row {
    display: flex;
    align-items: center;
  }
  
  h1 {
    font-weight: 700;
    margin: 0;
  }

  h5 {
    text-align: center;
  }
  
  nav {
    display: flex;
    justify-content: flex-end;
  }
  
  a {
    padding: 0px 15px;
    margin: 5px;
  }

  nav a+a::before {
    content: '|';
    padding-left: 0px;
    padding-right: 20px;
  }
  
  .jumbotron {
    display: flex;
    align-items: center;
    background-image: url('images/eburgh.JPG');
    background-size: cover;
    color: wheat;
    height: 500px;
  }
  
  .jumbotron h2 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    color: wheat;
  }
  
  .jumbotron h3 {
    margin: 0 0 10px;
    color: wheat;
  }
  
  section .row img {
    margin: 0 0 30px;
    width: 100%;
  }
  
  .col-md-6 {
    margin: 0 0 30px;
  }
  
  .btn.btn-primary {
    border-radius: 2px;
    border: 0px;
    color: #fbd1d5;
    background-color: #ffffff;
  }
  
  .btn.btn-primary:hover {
    color: #ffffff;
    background-color: #fbd1d5;
  }
  
  .btn-secondary {
    background-color: #2a70e0;
    color: #ffffff;
    margin: 0 0 30px;
  }
  
  .portrait {
    width: 100%;
    height: 200px;
  }
  
  figure img {
    width: 100%;
    height: auto;
  }
  
  figure {
    margin-bottom: 30px;
  }

  .font-weight {
    font-weight: 700;
  }
  
  footer {
    font-size: 12px;
    padding: 20px 0;
  }
  
  footer .col-sm-8 {
    display: flex;
    justify-content: flex-end;
  }
  
  footer ul {
    list-style: none;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
  }
  
  @media (max-width: 600px) {
    nav {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%;
    }
  }

  @media (max-width: 490px) {
    .container-index {
      height: 100%;
    }
  }

  @media (max-width: 490px) {
    .jumbotron {
      height: 650px;
    }
  }