@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Poppins:wght@700&display=swap');
:root{
  font-size: 18px;
}

*{
  box-sizing: border-box;
}
body{
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

#main{
  margin: 0;
  padding: 0;
}

header{
  text-align: center;
  margin-top:0;
  padding: 2rem;
  background: linear-gradient(35deg, #CCFFFF,#FFCCCC);
}

#title{
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  padding-bottom: 0;
}

header p{
  margin: 0;
  padding: 0;
  letter-spacing: 2.5px;
  text-decoration: underline;
}

.sec-display{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 2rem auto;

}

.sec-display>*{
  width: 100%;
  margin: 1rem;
}

#img-div{
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#image{
  max-width: 100%;
  border-radius: 3rem .5rem;
}

.inspiration p{
  line-height: 1.2;
  font-size:
}

hr{
  margin: 0;
}

#tribute-info{
  width: 80%;
  margin: 0 auto;
}

#tribute-info p{
  font-size: 1.25rem;
}


.footer{
  width: 80%;
  margin: auto;
  text-align: center;
}

@media (min-width: 450px) {
  #title{
    font-size: 2.25rem;
  }
}

@media (min-width:700px) {
  .sec-display{
    display: flex;
    flex-direction: row;
  }
  #tribute-info{
    width: 60%;
    margin: 0 auto;
  }
}
