body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

h1 {
    margin: 0;
}


.card {
    max-width: 100%;
    height: auto;
}

@media only screen and (min-width: 700px) {
    img {
        max-width: 700px;
        display: block;
        margin: 0 auto;
    }
}
/* 
.rsvp-form {
    text-align: center;
}

form {
    display: inline-block;
} */


.rsvp-heading {
    display:none;

}

#rsvpForm {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  #rsvpForm label {
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    flex-basis: 100px;
    flex-shrink: 0;
  }
  
  #rsvpForm input[type="text"],
  #rsvpForm input[type="email"],
  #rsvpForm select {
    flex-grow: 1;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  
  #rsvpForm select {
    flex-basis: 120px;
  }
  
  #rsvpForm button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #rsvpForm button:hover {
    background-color: #666;
  }

  @media only screen and (max-width: 600px) {
    #rsvpForm label {
      flex-basis: 100%;
      margin-bottom: 5px;
    }
  
    #rsvpForm input[type="text"],
    #rsvpForm input[type="email"],
    #rsvpForm select {
      flex-basis: 100%;
      margin-right: 0;
    }
  
    #rsvpForm select {
      flex-basis: auto;
    }
  }
  

  


label {
    display: block;
    margin-bottom: 5px;
}

input {
    display: block;
    margin-bottom: 10px;
}

footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.language-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 10px;
}

.language-menu li {
    display: inline-block;
    margin-left: 10px;
}

.language-menu li:first-child {
    margin-left: 0;
}

.language-menu li a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;


}

.language-menu li a:hover {
    background-color: #666;

}