body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("assets/background.webp") no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/background.webp");
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -2;
  background-attachment: fixed;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

h1 {
  font-size: 20px;
  margin: 0 0 15px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #1d3949;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #162b37;
  transform: scale(1.05);
}

.krona-one-regular {
  font-family: "Krona One", sans-serif;
  font-weight: bold;
  font-style: normal;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.app-logo {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  margin: 20px;
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 150px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 15px;
}

.skizofrenks {
  width: 100px; /* Ajusta el ancho al 100% del contenedor */
  height: auto;
  margin-top: 15px; /* Añade margen superior para separarlo del logo */
}

.image-container {
  width: auto;
  height: auto;
}

.screenshot {
  width: 100%;
  max-width: 1100px;
  height: auto;
}

.krona-one-regular {
  font-family: "Krona One", sans-serif;
  font-weight: bold;
  font-style: normal;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .app-logo {
    width: auto;
    height: auto;
    margin-right: 20px;
    margin-top: 600px;
    margin-bottom: 0;
  }

  .image-container {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .screenshot {
    height: auto;
    width: 95%;
  }
}

.container-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  height: 25px;
  margin-left: 5px;
}

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 10px;
}

.icon-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: white;
}

.icon-list li:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

.icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.icon-list li img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-list li span {
  font-size: 16px;
  color: white;
}
