/* -------  General Styles ------- */

body {
    font-family: 'Lato', sans-serif;
    color: #6b1a22;
  }
  
  h2 {
    font-size: 26px;
    font-weight: 400;
    margin: 0 10px 15px 10px;
    text-align: center;
  }
  
  h3 {
    font-size: 18px;
    font-weight: 500;
  }
  
  p {
    line-height: 1.5em;
    margin: 0;
  }
  
  section {
    padding: 15px;
  }
  
  section.alternate-background {
    background-color: #a35766;
    color: #ecdbc9;
  }
  
  main img {
    width: 90%;
  }
  
  /* ---  Groups & Items --- */
  
  .group {
    display: flex;
    flex-direction: column;
  }
  /* flex:1 means div grow or shrink proportion to window size*/
  .item {
    flex: 1;
    margin: 15px;
  }
  
  .box {
    display: flex;
    flex: 2;
  }
  
  /* -------  Navigation ------- */
  
  header {
    background-color: #83092e;
    padding: 20px 20px 0 20px;
    text-align: center;
  }
  
  .logo {
    font-family: "Tangerine", cursive;
    font-size: 72px;
    color: #ecdbc9;
  }
  
  header nav {
    display: flex;
    justify-content: center;
  }
  
  header nav ul {
    display: flex;
  }
  
  header nav ul li {
    list-style-type: none;
  }
  
  header nav ul li a {
    color: #ecdbc9;
    text-decoration: none;
    padding: 0 20px 0 0;
  }
  
  header nav ul li a:hover {
    color: #bdbdbd;
    text-decoration: none;
  }
  
  /* -------  Join Form ------- */
  form {
    border: 2px solid #6b1a22;
    padding: 10px;
  }
  
  form label {
    font-weight: bold;
  }
  
  form div {
    display: flex;
    justify-content: space-between;
  }
  
  form select, form input {
    margin-bottom: 20px;
    width: 180px;
  }
  
  form button {
    background-color: #83092e;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 15px;
    width: 100%;
  }
  
  /* -------  Footer ------- */
  
  footer {
    background-color: #83092e;
  }
  
  footer p {
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  
  /* -------  Media Query ------- */
  
  @media all and (min-width: 480px) {
    header {
      display: flex;
      justify-content: space-between;
      padding: 0;
    }
  
    .logo {
      margin: 14px 0 14px 20px;
      font-size: 42px;
    }
    
    header nav ul {
      align-items: center;
    }
  
    .group {
      display: flex;
      align-items: center;
      flex-direction: row;
    }
  }