body {
  background: linear-gradient(
    68.6deg,
    rgb(241, 113, 113) 1.8%,
    rgb(172, 170, 170) 100.5%
  );
}

h1 {
  text-align: center;
  color: rgb(151, 8, 8);
}

p {
  font-family: "Arial", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgb(146, 20, 20);
}

img {
  max-width: 100%;
}

button {
  display: block;
  margin: 0 auto;
  border: 1px solid rgb(97, 39, 19);
  background: rgb(166, 29, 29);
  font-size: 20px;
  border-radius: 6px;
  padding: 10px 15px;
  transition: all 150ms ease-in-out;
  color: white;
}

button:hover {
  background: rgb(109, 20, 25);
  cursor: pointer;
}

footer {
  text-align: center;
  margin: 10px 0;
  font-size: 18px;
}

a {
  color: rgb(120, 15, 15);
  text-decoration: none;
}

.container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
}

.form-container {
  max-width: 600px;
  margin: 20px auto 100px auto;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.theme-button {
  font-size: 15px;
  background: black;
  color: white;
  padding: 5 px;
}

.theme-button:hover {
  color: black;
  background: white;
  cursor: pointer;
}

.salsa-intro-picture {
  border-radius: 10px;
  transition: all 150ms ease-in-out;
}

.salsa-intro-picture:hover {
  filter: contrast(80%);
  transform: scale(1.1);
}

.grid {
  margin: 15px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

.grid img {
  width: 100%;
  border-radius: 8px;
  transition: all 150ms ease-in-out;
}

.grid img:hover {
  transform: scale(2);
}

.dark {
  background: linear-gradient(
    112.1deg,
    rgb(68, 4, 4) 11.4%,
    rgb(19, 15, 15) 70.2%
  );
}

.dark .container {
  background: rgba(36, 12, 12, 0.1);
  color: white;
  box-shadow: 0 0 20px rgb(219, 143, 143);
}
.dark .form-container {
  background: rgba(36, 12, 12, 0.6);
  color: white;
  box-shadow: 0 0 20px rgb(219, 143, 143);
}

.dark a {
  color: rgb(159, 61, 61);
  text-decoration: none;
}

.dark h1,
.dark h2,
.dark p,
.dark footer {
  color: rgb(219, 143, 143);
}

.dark img {
  box-shadow: 0 0 7px rgb(219, 143, 143);
}

.dark input,
.dark select,
.dark textarea {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(200, 200, 200);
  border: 1px solid rgb(150, 150, 150);
  box-shadow: 0 0 5px rgb(219, 143, 143);
}


.dark .select-variant {
  background: rgba(255, 255, 255, 0.1);
  color: black;
}


.dark input::placeholder,
.dark select::placeholder,
.dark textarea::placeholder {
  color: rgb(200, 200, 200);
}
.dark button {
  background: rgb(100, 29, 29);
  border: 1px solid rgb(150, 50, 50);
  box-shadow: 0 0 10px rgb(219, 143, 143);
}
.dark button:hover {
  background: rgb(150, 50, 50);
}
.dark .theme-button {
  background: white;
  color: black;
}
.dark .theme-button:hover {
  background: black;
  color: white;
}

.theme-button::before {
  content: "Dark theme";
}

body.dark .theme-button::before {
  content: "Light theme";
}


