  html {
    background: black;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: white;
  }
  p {
    padding:0;
    margin:0;
  }
  .logo {
    max-width: 160px;
    display: block;
    margin: 0 auto;
  }
  h1{
    opacity:0;
    position: absolute
        }
  main {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
  .images {
    display: block;
    width: 100%;
    margin: 0 auto;
    
  }

  .links {
    display: block;
    max-width:300px;
    margin:0 auto;
    text-align: center;
  }
 
#quotes {
color: rgba(248, 199, 41, 0.7);
font-size: 20px;
text-align: center;
max-width: 1200px;
font-weight: 700;
width: 100%;
position: relative;
margin: 40px auto 0px;
min-height: 100px;
box-sizing: border-box;
padding: 0 20px;
}
#quotes span {
  font-style: italic;
  font-weight: normal;
}
footer {
  font-family: Montserrat,sans-serif;
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom:40px;
 
}
footer .website {
  color: rgba(248, 199, 41, 0.7);
}
footer .email {
  color: white;
}

.quote {
  opacity: 0;
  position: absolute;
  min-height: 0;
  transition: opacity 6s ease-in-out;
  text-align: center;
  width: 100%;
  height: 0;
  top:0%;
  left:50%;
  transform: translate(-50%,0%);
  
}
.quote.active {
  opacity: 1;
  min-height: 50px;
  height: auto;
  
  

}
 @media only screen and (min-width: 960px) {
  .jarred {
    width: 50%;
    max-width:800px;
    
  }
  #quotes {
font-size: 2rem;
margin-top:80px;
}
  .logo {
    max-width: 400px;
  }
}