.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid white;
  outline: none;
  transition: background-color 0.1s;
  color: white;
  font-size: large;
  box-sizing: border-box;
}
.form-control.partial {
  border-radius: 1rem 0 0 1rem;
}
.form-control:focus {
  border: 1px solid #555;
}
.form-control:focus, .form-control:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

button, input[type=submit] {
  background-color: #fcba06;
  color: black;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  transition: background-color 0.1s;
  cursor: pointer;
}

.rsvp {
  background-color: #06cffc;
  color: black;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  transition: background-color 0.1s;
  cursor: pointer;
}



button.partial, input[type=submit].partial {
  border-radius: 0 1rem 1rem 0;
}
button:hover, input[type=submit]:hover {
  background-color: rgb(219.6535714286, 134.3503571429, 2.6464285714);
}
button:active, input[type=submit]:active {
  background-color: rgb(184.3785714286, 91.5228571429, 2.2214285714);
}

form {
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
form textarea {
  resize: vertical;
}
form textarea.large {
  height: 20rem;
  min-height: 20rem;
}
form textarea:not(.large) {
  height: 10rem;
  min-height: 10rem;
}
form input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  display: inline;
  outline: none;
}
form input[type=submit] {
  flex-grow: 1;
}
form h1 {
  margin: 1.25rem 0 0 0;
}

.center {
  text-align: center;
}

form button, input[type=submit] {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

body {
  background-color: #012852;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  color: rgb(252, 184, 6);
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

nav {
  padding: 2rem;
  box-shadow: 0rem 0.1rem 1rem black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
nav h1, nav ul {
  margin: 0;
}
nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
nav ul li {
  margin: auto;
}

header {
  text-align: center;
}

main {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

a {
  color: white;
}
a:hover {
  color: lightgrey;
}

.content {
  display: flex;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  flex-direction: column;
}
.content:not(.wide) {
  max-width: 500px;
}
.content.wide {
  max-width: 1500px;
}
.content table {
  width: 100%;
}
td {
   border: 3px solid rgb(0, 34, 255);
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: none;
}
table a, table td {
  color: black;
}
table th {
  background-color: #FCB806;
}
table td, table th {
  padding: 0.5rem;
  text-overflow: "";
  overflow: hidden;
  white-space: nowrap;
  min-width: none;
  text-align: left;
}
table tr:nth-child(odd) {
  background-color: white;
}
table tr:nth-child(even) {
  background-color: lightgrey;
}

.inside {
  background-color: white;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  box-sizing: border-box;
}
.inside p, .inside b, .inside li {
  color: black;
}

input:not([type=submit]), label, textarea {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.horizontal {
  flex-direction: row;
  align-items: center;
}

form label {
  font-size: larger;
}

.message-container, .flashes {
  color: white;
  font-size: large;
  margin-bottom: 1rem;
  width: 100%;
}

li, p, label {
  color: white;
}

a.yellow {
  color: #FCB806;
}
a.yellow:hover {
  color: rgb(204.5357142857, 131.8392857143, 2.4642857143);
}

.image_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.image_list .image_row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  background-color: lightgray;
  padding: 0.75rem;
  border-radius: 1rem;
}
.image_list .image_row > img {
  --dimension: 7rem;
  width: var(--dimension);
  height: var(--dimension);
  object-fit: contain;
  background-color: black;
}
.image_list .image_row div:has(a) {
  flex-grow: 1;
}
.image_list .image_row div:has(a) a {
  color: #012852;
}
.image_list .image_row div:has(a) a:hover {
  color: rgb(34.686746988, 103.1987951807, 252.313253012);
}
.image_list .image_row button {
  align-self: flex-start;
  padding: 0.5rem 0.75rem;
}

/*# sourceMappingURL=page.css.map */
