@charset "utf-8";

/* Travel Page */

/* 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;
}

section 
{
    display:flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 45px auto 0;
    gap: 35px;
}

article 
{
    background-color: rgb(194, 240, 194);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 10px rgb(35, 144, 35);
    width: 30%;
}

article h2
{
    text-align: center;
    margin-bottom: 10px;
}

li 
{
    margin-bottom: 10px;
}





/* Website Title */
body {
    margin: 0;
    font-size: 22px;
}

header {
    text-align: center;
    padding-top: 30px;
}
    /* Images */
img {
    width: 200px;
    height: auto;
    }

/*