:root {
  --half-transparent: rgba(255, 255, 255, 0.5);
  --content-shadow: 2px 2px 2px 2px rgb(59, 69, 223);
}

html {
  background-image: url("./stadium.jpg");
  background-size: cover;
  background-position: center;
  font-family: "Cactus Classical Serif", serif;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 10px;
  padding: 10px 20px 0;
  margin: 0;
  font-size: 1.5rem;
}

nav a,
nav a:visited {
  text-decoration: none;
  color: white;
  background-color: var(--half-transparent);
  padding: 10px;
  border-radius: 5px;
}

a,
a:visited {
  color: black;
  text-decoration: none;
}

.content {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list-container {
  margin-bottom: 30px;
}

.container {
  display: flex;
  justify-content: center;
}

.list-container ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list-container li {
  box-shadow: var(--content-shadow);
  background-color: white;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  justify-content: center;
  width: 300px;
  font-size: 1.2rem;
  border-radius: 5px;
}

.listitem {
  width: 100%;
  text-align: center;
}

label {
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 5px;
}

button,
input[type="text"],
select {
  font-size: 1rem;
}

.create-form {
  display: flex;
  flex-direction: column;
  align-items: first baseline;
  gap: 10px;
  background-color: var(--half-transparent);
  padding: 5px;
  border-radius: 5px;
}

button[type="submit"] {
  align-self: last baseline;
}

.nothing-msg {
  text-align: center;
  font-size: 1.5rem;
  padding: 5px;
  border-radius: 5px;
  box-shadow: var(--content-shadow);
  background-color: white;
}

h1 {
  font-weight: 500;
  text-align: center;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 2px rgb(23, 209, 94);
}

footer {
  margin-left: auto;
  color: white;
  text-align: right;
}

footer a,
footer a:visited {
  color: rgb(143, 143, 0);
  text-decoration: none;
}

.edit {
  margin-left: auto;
  margin-right: 5px;
}

.add-btn {
  padding: 10px;
  background-color: white;
  border-radius: 5px;
  font-size: 1.5rem;
  box-shadow: 3px 3px 5px 3px grey;
}
