
.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;
    }
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4 {
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.post-body h1 { font-size: 1.875rem; }
.post-body h2 { font-size: 1.5rem; }
.post-body h3 { font-size: 1.25rem; }
.post-body p  { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body ul { list-style-type: disc; }
.post-body ol { list-style-type: decimal; }
.post-body li { margin-bottom: 0.4rem; }
.post-body a  { color: #2563eb; text-decoration: underline; }
.post-body a:hover { color: #1d4ed8; }
.post-body img { border-radius: 0.75rem; margin: 1.5rem 0; max-width: 100%; }
.post-body blockquote { border-left: 4px solid #bfdbfe; padding-left: 1rem; color: #6b7280; font-style: italic; margin: 1.5rem 0; }
.post-body strong { font-weight: 700; color: #111827; }
.post-body hr { border-color: #e5e7eb; margin: 2rem 0; }
