:root {
  background-color: #222222;
}

body {
  background-color: inherit;
  font-family: 'Inter Tight';
}

.container {
  max-width: 800px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.card {
  background-color: #222222;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px #cccccc(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
  color: #cccccc;
  overflow: hidden;
  white-space: nowrap;
}

.card-text {
  color: #a8a8a8;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.link-button {
  background-color: transparent;
  color: #cccccc;
  border: 2px solid #cccccc;
  padding: 10px 0;
  width: 160px;
  border-radius: 5px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  letter-spacing: 1px;
}

.link-button i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.link-button:hover {
  background-color: #ffb9db;
  color: #000;
  border-color: #ffb9db;
}

.avatar {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  margin-bottom: 20px;
  margin-top: 15px;
  /*optional: add a border;*/
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #222222;
  padding: 20px 0;
  text-align: center;
  color: #cccccc;
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  letter-spacing: .5px;
}

footer .heart {
  display: inline-block;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: transform 0.3s;
}

footer .heart:hover {
  animation-name: pulse;
  transform: scale(1.2);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

p, h1, h2, h3, h4, h5, h6 {
  letter-spacing: 1px;
  color: #cccccc;
}

h1, h2, h3, h4, h5, h6 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0,0,0,0), #fff, rgba(0,0,0,0));
  margin: 2em 0;
}

.form-container {
  background-color: #222222;
  color: #cccccc;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.hidden {
  display: none;
}

input[type="submit"] {
  background-color: transparent;
  color: #cccccc;
  border: 2px solid #cccccc;
  padding: 10px 0;
  width: 160px;
  border-radius: 5px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
}

input[type="submit"]:hover {
  background-color: #ffb9db;
  color: #000;
  border-color: #ffb9db;
  margin-top: 15px;
}

.venue-link {
  color: #ffb9db;
}

.venue-link:hover {
  color: #cccccc;
}

.venue-link:visited {
  color: #ffb9db;
}

address {
  color: #ccc;
}

.color-palette {
  text-align: center;
  padding: 20px 0;
}

.colors {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.color-box {
  width: 30px;
  height: 30px;
  border: 1px solid #000;
}

#color1 {
  background-color: #D4A5A5;
}

#color2 {
  background-color: #4E937A;
}

#color3 {
  background-color: #D8C3A5;
}

#color4 {
  background-color: #E9DAB1;
}

#color5 {
  background-color: #948C75;
}

