:root{
  --background-1: #293b45;
  --background-2: #92A4B2;
  --background-3: #c1d2d9;
  --text-light: #fff;
  --text-dark: #293b45;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 80px;
  --width-container: 1200px;
}



body {
    background-color: #c1d2d9; 
    background-position: center; 
    background-repeat: no-repeat; 
    font-family: 'Bellota Text';
    font-size: 20px;
    padding: 100px 0px 10px 100px;
    }

/* Navigation */
nav {
  background-color: var(--background-3);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index:1; 
}

/* Navigation Links Style */
nav a {
  color: var(--text-dark);
  display: inline-block;
  text-align: center;
  padding: 10px;
  text-decoration: none;
}

/* Navigation Links Hover */
nav a:hover {
  background-color: var(--background-1);
  color: var(--text-light);
}



.gallery {
  display: flexbox;
  justify-content: center;  
}

/* Footer */
footer { 
    background-color: #293b45;
    color: white;
    line-height: 200%;
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
  }
  
