
.download-icon {
    text-decoration: none;
}

.download-icon img {
	height: 50px;
	border: 0px;
}

.download-icon.apple img {
	height: 34px;
}

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

/*

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

*/
.pagination {
  width: 262px;
  display: flex;
  gap: 1em;
}

.pagination a,
.pagination .current,
.pagination .previous_page,
.pagination .next_page {
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  padding: 10px 20px;
  border: 1px solid;
  cursor: pointer;
  min-width: 50px;
  display: inline-block;
  font-style: normal;
  background-color: #ed4b7300;
  border-color: rgb(58, 132, 251);
  color: #000;
  font-size: .8em;
}

.pagination a:hover {
  background-color: rgb(162, 197, 255);
  border-color: rgb(58, 132, 251);
  color: #000;
}

.pagination .current,
.pagination .disabled,
.pagination .current:hover
.pagination .disabled:hover
.pagination .previous_page:hover {
  cursor: not-allowed;
  background-color: #1b1b1b37;
  border-color: rgb(58, 132, 251);
  color: #000;
}
.animate-text {
    transition: all 1.5s;
    opacity: 0;
}

.animate-horizontal-line {
    transition: all 1.5s;
}

.animate-text-show .animate-horizontal-line {
    width: 100% !important;
}

.animate-text-show {
    opacity: 1;
    transform: translateY(5px);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS 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/SCSS
 * 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.
 *


 */

 body {
   color: #333;
 }

 .hero-bgg {
    background-image: url(/assets/lemonadeImage-e3d02b981cf56ef94deb6f5d702d13cc6f210f3b71d89c13bd8b75e0c3c57db6.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 48em;
 }

 #canvas {
    display: block;
    width: 100%;
    height: 10em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
 }

 .top-margin {
    margin-top: 10.5em;
 }

@media (min-width: 768px) {
    .hero-bgg {
        min-height: 36em;
    }
}
