@charset "utf-8";

/* Significance Styles */

/* Background color */
body {
    background-color: rgb(202,233,246);
}

/* Navigation Tabs */
nav {
      background-color: white;        
      padding: 10px;
      }

    ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     gap: 0px;
     border-radius: 5px;
     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;
}


section 
{
  display: grid;
  grid-template-columns: repeat(2,2fr);
  gap: 20px;
  max-width: 1500px;
  margin: auto;
}

figure 
{
  text-align:center;
  font-family: "Georgia", serif;
  font-size: 15px;
}

img 
{
  width: 75%;
  max-width: 1300px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 10px rgb(0, 108, 204);
}

figcaption 
{
  margin-top: 25px;
  font-size: 16px;
  color: black;
  text-align: center;
  
}


