body {
  font-family: "Inter", sans-serif;
  padding: 0px;
  margin: 0px;
  width: 100%;



}
 body.blur > * {
    filter: blur(5px) opacity(0.5);
  }
 body button {
    border-style: solid;
    cursor: pointer;
  }
 body header {
    width: 100%;
    background-color: #01dd86;
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
    box-sizing: border-box;


  }
 body header > h1 {
      margin: 0;
      margin-left: 10px;
    }
 body header > .input-container {
      margin-left: auto;
      margin-right: 10px;
      position: relative;

    }
 body header > .input-container > input {
        border-radius: 500px;
        height: 20px;
        border: none;
        padding: 0px 10px;
      }

main.index {





  .perfect::before,

}
 main.index > h1 {
    text-align: center;
  }
 main.index > .demo-container {
    padding: 20px;
    max-width: 100vw;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 35px;
  }
 main.index .demo-link {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);

    text-align: center;
    border: 2px solid black;
    padding: 10px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
  }
 main.index .todo {
    border-color: red;
  }
 main.index .review {
    border-color: orange;
  }
 main.index .perfect {
    background: white;
  }
 main.index .demo-link:hover {
    box-shadow: 0 8px 20px #01dd86;
    border-color: #01dd86;
  }
 main.index .demo-thumb {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
 main.index .perfect:after {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    background: linear-gradient(
      45deg,
      #eafb00,
      #0000ff,
      #00ff00,
      #ffff00,
      #ff0000,
      #fb0094,
      #0000ff,
      #00ff00,
      #ffff00,
      #ff0000
    );
    border-radius: 15px;
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
  }
 main.index .perfect::after {
    filter: blur(5px);
  }

.legal-warning {
  background-color: #ff4d4d;
  padding: 10px;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

main.create-demo {




}
 main.create-demo input {
    font-size: 1.2em;
  }
 main.create-demo section {
    margin-left: auto;
    margin-right: auto;
    padding: 1em 0.5em;
  }
 main.create-demo #url-input {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;

  }
 main.create-demo #url-input input {
      width: min(100%, 25em);
      padding: 0.1em 0.7em;
      border-radius: 100em;
    }
 main.create-demo #url-input button {
      padding: 0.1em 0.7em;
      font-size: 1.2em;
      border-radius: 100em;
    }
 main.create-demo #responses {
    // display: none;
    background-color: lightgreen;
    padding: 0.2em 1em;
    margin: 1em;
    position: relative;


  }
 main.create-demo #responses > h2 {
      text-align: center;
      margin-top: 0;
    }
 main.create-demo #responses > button {
      text-align: center;
      padding: 1em 3em;
      border-radius: 100em;
      font-size: 1.2em;
      display: block;
      cursor: pointer;
      margin: 2em auto;
    }
 main.create-demo #responses .syncable {
      display: flex;
      gap: 0.5em;
      flex-wrap: wrap;
      filter: drop-shadow(2px 4px 6px black);
      background: green;
      padding: 0.5em;
      justify-content: center;

    }
 main.create-demo #responses .syncable img {
        width: 100px;
      }
 main.create-demo #responses .response {
      display:flex;
      flex-direction: column;
      gap: 1em;
    }
 main.create-demo #logo-preview {
    max-width: min(100%, 250px);
  }
