@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

.progress-container {
  width: 470px;
  margin: 0 auto;
}

.progress-bar {
  width: 100%;
  height: 45px;
  border: 2px solid white;
  background-color: transparent;
  position: relative;
  border-radius: 50px;
  padding: 5px;
}

.progress {
  height: 100%;
  background-color: white;
  width: 0%;
  animation: progressAnimation 6s linear forwards;
  position: relative;
  border-radius: 50px;
}

.progress-image {
  width: 742px;
  height: 261px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 100%;
  animation: imageAnimation 6s linear forwards;
}

@keyframes progressAnimation {
  from {
      width: 0%;
  }
  to {
      width: 100%;
  }
}

@keyframes imageAnimation {
  from {
      left: 0%;
  }
  to {
      left: 100%;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
