* {
  font-family: "Poppins", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: whitesmoke;
}

h1 {
  font-family: "Playwrite AR", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 4rem;
}

h2 {
  font-family: "Playwrite AR", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

/* h3 {
  font-family: "Poppins", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h4 {
  font-family: "Poppins", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p,
label,
input,
button,
::placeholder {
  font-family: "Poppins", serif;
  font-optical-sizing: auto;
  font-style: normal;
} */

p,
span {
  font-size: 1.4rem;
}

li {
  font-size: 1.4rem;
}

span {
  font-weight: bold;
}

input {
  color: rgb(34, 34, 34);
}

body {
  margin: 5%;
  background-image: url("assets/toni-cuenca-CvFARq2qu8Y-unsplash-min.webp");
  background-size: cover;
}

button {
  font-size: 1rem;
  border: none;
  border-radius: 10000px;
  transition: all ease-in-out 0.2s 0s;
  background-color: rgb(73, 73, 212);
  color: white;
  cursor: pointer;
  transform: translate(0, 0, 0);
  padding: 12px 20px;
}

button:hover {
  background-color: rgb(16, 152, 16);
  transform: translate(-10px, 10px, 5px);
}

.eventDetails {
  max-width: 500px;
  margin-top: 1em;
}

.eventDetails__Wrapper {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: solid white 1px;
  border-radius: 10px;
}

#addPeople {
  margin-top: 2em;
}

#addPeople svg {
  fill: white;
}

#addPeople__Fields {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

#addPeople__Fields div {
  display: flex;
  gap: 0.5em;
}

#addPeople__Fields div:last-of-type {
  margin-bottom: 0.5em;
}

#addPeople__Fields div:hover svg {
  opacity: 0.8;
}

#addField {
  opacity: 0.7;
}

#addField::placeholder {
  font-size: 1rem;
}

.trashCan {
  width: 16px;
  cursor: pointer;
  opacity: 0;
}

input {
  max-width: 300px;
  width: 100%;
  height: 45px;
  padding: 20px 12px;
  border-radius: 5px;
  border: none;
}

.createEventBtnWrapper {
  display: flex;
  justify-content: end;
}

#createEventBtn {
  margin-top: 1em;
  width: fit-content;
  margin-left: auto;
}