: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;
}

  html{
    height: 100%;
    font-family: 'Bellota Text';
    font-size: 20px;
  }

  body{
    background: #c1d2d9;

  }

/* 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);
}


  /* Quote container */
#container{
    width:800px;
    margin:50px auto;
    padding: 100px;
    width:50%;
    background: #c1d2d9;

}
#container h1{
    text-align:center;
    color:#293b45;
}

#quoteContainer{
    width:75%;
    background: #c1d2d9;
    padding:10px;
    margin:30px auto;
    text-align: center;
  height:70px;
}
#buttonContainer{
    width: 100%;
    text-align: center;
}
#quoteButton{
    width:200px;
    margin-top: 10px;
    border:2px solid #293b45;
    color:#045;
    font-family: inherit;
    font-weight: bold;
    padding:5px;
    text-decoration: none;
    text-align: center;
}

#quoteButton:hover{
    cursor:pointer;
    background:#293b45;
    color: #fff;    
}
#quoteButton:active{
    cursor: pointer;
}
#quoteButton{
    display: inline-block;
}
#quoteGenius{
    font-style: italic;
    font-weight: 600;
    text-align: center;
}


/*MEDIA QUERIES*/
@media screen and(max-width:760px){
    #quoteButton,#addNew{
        display: block;
    }
}
