body{
    padding: 0 0 96px 0;
    margin: 0;
    background-image: url(../img/background.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    text-rendering: optimizeLegibility;
}
.card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 12px;
    box-sizing: border-box;
}
.card{
    max-height: 100%;
    max-width: 100%;
    -webkit-box-shadow: 2px 2px 15px 5px rgba(44,65,44,0.4); 
    box-shadow: 2px 2px 15px 5px rgba(44,65,44,0.4);
}
.info-container{
    max-width: 780px;
    width: auto;
    background-color: white;
    -webkit-box-shadow: 2px 2px 15px 5px rgba(44,65,44,0.4); 
    box-shadow: 2px 2px 15px 5px rgba(44,65,44,0.4);
    margin: 96px 12px 0 12px;
    padding: 24px;
    border-radius: 8px;
}
.intro{
    line-height: 1.6em;
}
.title{
    font-family: 'Montserrat Alternates', sans-serif;
    text-decoration: none;
    color: #105e31;
    margin: 36px 0 6px 0;
}

.couple-photo{
    display: block;
    width: 428px;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    margin: 36px auto;
    box-sizing: border-box;
}
.venue-title{
    display: block;
    font-size: 36px;
    text-align: center;
    margin: 36px;
}
.venue-photo{
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    margin: 36px auto;
    box-sizing: border-box;
}
.venue-map{
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    margin: 36px auto;
    box-sizing: border-box;
}
ul{
    list-style: none;
    padding: 0;
}
ul a{
    color: black;
    text-decoration: none;
}
li{
    margin: 0 0 8px 0;
}

.hr{
    margin-top: 96px;
    width: 80%;
    height: 96px;
    background-image: url(../img/hr.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
  
  .card-container::before {
    animation: bounce 2s ease infinite;
    bottom: 2rem;
    color: #105e31;
    content: '╲╱';
    font-size: 2rem;
    height: 4rem;
    left: 50%;
    letter-spacing: -2px;
    line-height: 4rem;
    margin-left: -3rem;
    opacity: 0.8;
    position: absolute;
    text-align: center;
    width: 6rem;
  }
  
  @keyframes bounce {
    50% {
      transform: translateY(-50%);
    }
  }

