a{
color: #4F3200;
text-decoration: underline;
}
a:visited {
  color: #4F3200;
}
body{
    margin: 0;
    padding: 0;
    background-color: #F4F2E9;
    font-family: "franklin-gothic-condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
}
#header{
    background-color: #F4F2E9;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4% 0;
}
h1,h2{
    color: #4F3200;
    text-transform: uppercase;

}
h1{
    font-size: 8em;
    letter-spacing: -5.988px;

}
#flower{
    margin-top: -120px;
    max-width: 300px;
    max-height: 300px;
    
}
#content{
    width: 100vw;
    color:#4F3200;
    display:flex;
    align-items: center;
}
#content-container{
    display: flex;
    padding: 0% 16px;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
}
p{
    width:80%;
    max-width: 400px;
    font-weight: 400;
}

#footer{
    background-color: #F4F2E9;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4F3200;
}

#footer-container{
    display: flex;
    flex-direction: row;
    
    align-items: center;
    padding: 1% 0;
    gap: 10px;
}

/* animate */
@-webkit-keyframes rot /* Safari and Chrome */ {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rot {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .rot {
    -webkit-animation: rot 60s linear infinite;
    -moz-animation: rot 60s linear infinite;
    -ms-animation: rot 60s linear infinite;
    -o-animation: rot 60s linear infinite;
    animation: rot 60s linear infinite;
  }