@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Roboto:ital,wght@0,100;0,300;1,100;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Roboto:ital,wght@0,100;0,300;0,400;1,100&display=swap');
body{
   
    font-family: 'Akaya Telivigala', cursive;
font-family: 'Roboto', sans-serif; 
background-color: #f0e7d9;
position: relative;
}
.bakery-name {
    color: #BB6464;
    font-family: 'Akaya Telivigala', cursive;
    text-align: center;
}
/*summary cards css*/
.timeline-item {
    margin: 1em 0;
    width: 20em;
    padding: 1em;
    box-shadow: rgba(59, 4, 47, 0.315) 0px 20px 30px -10px;
    background-color: #D9CAB3;
  }
  .timeline-item:nth-child(even) {
    align-self: flex-end;
    
  }
.timeline-item-title {
font-size: 30px;
font-family: 'Akaya Telivigala', cursive;
color: #986D8E;
}
.timeline-item-date{
font-size: 40px;
}
.timeline-item-summary {
color: #3a5e59;
font-family: 'Roboto', sans-serif;
}
.timeline-circle {
    background: #BB6464;
    border-radius: 2em;
    position: absolute;
    left: 50%;
    margin-top: 25px;
    margin-left: -65px;
    padding: 0.5em;
    color: white;
  }
button {
    background-color: #87A8A4;
    border: 2px solid darkgray;
    font-size: x-large;
    cursor: pointer;
    display: block;
    width: 8em;
    height: 2em;
    margin: 0 auto;
  }
/*modal css*/
 #card-wrapper {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.349);
     backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);  
     justify-content: center;
    align-items: center;
    flex-direction: column;
  
  }  
#modal-date {
    font-size: 30px;
}
.timeline{
    position: relative;
    width: 50em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}
.timeline:before {
    content: "";
    background: #ffa60065;
    width: 5px;
    top: 0;
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#modal-container {
    
    
    position: fixed;
    top: 0vh;
    width: 100vh;
    max-height: 70vh;
    right: 0vh;
    left: 0vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #87A8A4;
  padding: 1em;
  border-radius: 0.5em;
  box-shadow: rgba(59, 4, 47, 0.315) 20px 20px 30px -10px;
  color: rgb(32, 45, 58);
  margin: 40px auto;
}
#modal-image {
    width: 200px;
    height: 200px;
    box-shadow: rgba(59, 4, 47, 0.315) 0px 20px 30px -10px;
    border-radius: 10px;
    margin: 30px 40px ;
}
#modal-full-description {
    font-weight: 400;
}
#modal-title{
    color: #BB6464;
    font-family: 'Akaya Telivigala', cursive;
}
#modal-close-button {
    cursor: pointer;
    width: 33px;
    height: 33px;
    background-color: #ffa60065;
  }
