@charset "UTF-8";
/*
Credit to Andy Bell's Modern CSS Reset
@link https://piccalil.li/blog/a-modern-css-reset/

🟣 = additions by Stephanie Eckles 
Twitter/Github/Codepen: @5t3ph
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, 
which suggests default styling will be removed 

🟣 Selector updated to reduce specificity
*/
:where(ul, ol):where([role=list]) {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  /* 🟣 Set base font-family */
  font-family: system-ui, sans-serif;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  /* 🟣 Relatively sized thickness and offset */
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.15em;
}

/* Make images easier to work with */
img,
picture,
svg {
  display: block;
  max-width: 100%;
}

/* 🟣 Ensure images with a width attr responsively resize */
img[width] {
  height: auto;
}

/* 🟣 Give SVGs common baseline */
svg {
  /* Inherit from text color */
  fill: currentColor;
  /* Allow click events to "fall through" */
  pointer-events: none;
}

/* 🟣 Scroll margin allowance above anchor links */
:target {
  scroll-margin-top: 2rem;
}

/* 🟣 Scroll margin allowance below focused elements 
to ensure they are clearly in view */
:focus {
  scroll-margin-bottom: 8vh;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
.flash {
  z-index: 1100;
  position: fixed;
  background: var(--color-grey-100);
  border: var(--border-100);
  top: 2vmin;
  margin-left: 2rem;
  max-width: 40ch;
  padding: var(--step-0);
}
.flash__inner {
  background-color: rgb(238, 238, 238);
  gap: var(--step--2) var(--step--1);
  grid-auto-rows: auto;
}
.flash__message {
  grid-row: 1;
}
.flash__button {
  grid-row: 2;
  justify-self: end;
  background-color: var(--color-dark) !important;
  color: var(--color-light) !important;
}
.flash__button:hover {
  color: var(--color-green) !important;
}

.invisible {
  display: none;
}

body {
  background-color: rgb(238, 238, 238);
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  column-gap: 80px;
  row-gap: 35px;
  padding-bottom: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.grid-container2 {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 80px;
  row-gap: 40px;
  padding-bottom: 5rem;
  padding-top: 2rem;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Nothing You Could Do", cursive;
  padding-top: 3%;
  background: -webkit-linear-gradient(8.5deg, #9D8DF1, #9D8DF1, #1CFEBA, #1CFEBA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-family: "Oswald", sans-serif;
  color: #505050;
}

hr {
  width: 15%;
}

.home {
  text-decoration: none;
}
.home a:hover {
  color: #1CFEBA;
}

.text {
  text-align: center;
  font-size: 1.25rem;
  font-family: "Cormorant Infant", serif;
  background: -webkit-linear-gradient(8.5deg, #8c7ae1, #816edc, #08ca90, #08ca90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text1 {
  padding-left: 2%;
  padding-right: 2%;
  font-family: "Alexandria", sans-serif;
}

.font {
  font-size: 1rem;
  color: #121212;
  text-align: center;
}

footer {
  color: #121212;
  text-align: center;
  padding-bottom: 2rem;
}

nav {
  color: #121212;
  text-align: center;
}

img {
  background-color: #73d7e5;
  box-shadow: 10px 10px;
  padding: 2rem;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: auto;
    gap: 25px;
  }
  .grid-container2 {
    grid-template-columns: auto;
    gap: 15px;
  }
  .separate > picture:nth-child(2) {
    margin-bottom: 2rem;
  }
}
a {
  color: #51e1b6;
}

a:hover, a:active, a:focus {
  color: #9D8DF1;
}

.separate > picture:nth-child(1) {
  margin-bottom: 2rem;
}

.card {
  margin-top: 2rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  background-color: rgb(234, 234, 234);
  text-align: center;
}

.card1 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  text-align: center;
}

.price {
  color: rgb(64, 64, 64);
  font-size: 22px;
  font-family: "Noto Serif Khojki", serif;
}

.card > button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
  opacity: 0.7;
}
