@charset "utf-8";



/* Background color */
body {
    background-color: rgb(202,233,246);
}

/* Navigation Tabs */
nav {
      background-color: white;        
      padding: 10px 0;              
    }

    ul {
      list-style: none;              
      margin: 0;
      padding: 0;
      display: flex;                 
      justify-content: space-around;
    }

    li a {
      color: black;                  
      text-decoration: none;         
      font-size: 1.2rem;
      padding: 10px 20px;
      transition: background-color 0.3s;
    }

    li a:hover {
      background-color: rgb(169,220,241);
    }

/* Paragraph fonts and styles */

article {
    font-family: "Georgia", serif;
    font-size: 17px;
    text-align:center;
}

h1 {
    font-family: "Luminari", fantasy;
    font-size: 18x;
    text-align:center;
}

/* Website Title */
body {
    margin: 0;
    font-size: 22px;
}

header {
    text-align: center;
    padding-top: 30px;
}


/* Images */
img {
    width: 180px;
    height: auto;
}


