/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  /* Body styles */
  body {
    font-family: 'Nunito', sans-serif;
    background-color: #181148;
    color: #FFFADF;
  }
  
  /* Header styles */
  header {
    text-align: left;
    padding-top: 1em;
  }
  
  #logo {
    width: 300px;
    padding-top: .5em;
  } 
  
  nav {
    background-color: #adb4f1;
    margin-top: 0.5em;
    height: 50px;
  }
  
  nav ul {
    list-style: none;
  }
  
  nav ul li {
    display: inline-block;
    margin: 15px;
  }
  
  nav a {
    text-decoration: none;
    text-transform:capitalize;
    color:#181148;
    font-size: 1.2em;
  }
  
  nav a:hover {
    color: #7168b6;
  }
  
  /* Main content styles */
  main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em 0;
  }
  
  .content {
    background-color: #7168b6;
    width: 80%;
    opacity: 0.75;
    padding: 2em;
    text-align: left;
  }
  
  h1 {
    text-align: center;
    font-size: 2.5em;
  }

  h2 {
    padding-bottom: 1%;
  }

  .content>p {
    line-height: 1.59
  }

 .tips {
    display:grid;
    justify-content: space-between;
    margin-top: 7%;  
 } 

  /* Footer styles */
  footer {
    background-color: #adb4f1;
    color: #181148;
    text-align: center;
    padding: 1em 0;
  }
  
  /* Image float for 7 TIPS page */
  img {
    float: left;
    margin-right: 20px;
    max-width: 40%;
    height: auto;
  }

  a {
    text-decoration: none;
    color:#FFFADF;
  }

  a:hover {
    color:#adb4f1;
  }

  