/* universal settings */
:root {
  color-scheme: light dark;
  --light-bg: #ff85c0;
  --light-color: #490416;
  --dark-bg: #725aa6;
  --dark-color: #ff85c0;
}

* {
  background: light-dark(var(--light-bg), var(--dark-bg));
  color: light-dark(var(--light-color), var(--dark-color));
  padding: 0;
  box-sizing: border-box;
  font-family: "Sniglet", serif;
  text-transform: uppercase;
  font-size: 24px;
  box-sizing: border-box;
  cursor: url(https://sweezy-cursors.com/wp-content/uploads/cursor/my-neighbor-totoro-white-mushroom/my-neighbor-totoro-white-mushroom-pointer-32x32.png),auto;
}

head {
  margin: auto;
  padding: 0px;
  display: flex;
  overflow: hidden;
}

body {
  margin: auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
}

/* fonts and text containers */
.sniglet-regular {
  font-family: "Sniglet", serif;
  font-weight: 400;
  font-style: normal;
}

.sniglet-extrabold {
  font-family: "Sniglet", serif;
  font-weight: 800;
  font-style: normal;
}

.comic-relief-regular {
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-bold {
  font-family: "Comic Relief", system-ui;
  font-weight: 700;
  font-style: normal;
}

.cherry-bomb-one-regular {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}

p { 
  background: transparent;
  font-size: 24px; 
}

h1 {
  background: transparent;
  text-align: center;
  font-size: 42px;
  text-shadow: 2px 2px light-dark(rgba(255, 255, 255, .3), rgba(0, 0, 0, .3));
}

h2 {
  background: transparent;
  text-align: center;
  text-shadow: 2px 2px light-dark(rgba(255, 255, 255, .3), rgba(0, 0, 0, .3));
  font-size: 32px;
}

h3 {
  background: transparent;
  text-shadow: 2px 2px light-dark(rgba(255, 255, 255, .3), rgba(0, 0, 0, .3));
  font-size: 28px;
}

.float-left { 
  float: left;
  background: transparent;
}

.float-right { 
  float: right;
  background: transparent
}

img { 
  background: transparent;
  pointer-events: none; 
}

a {
  transition-duration: .2s;
  cursor: url(https://sweezy-cursors.com/wp-content/uploads/cursor/weirdcore-aesthetic-spilled-coffee-chanterelle-mushrooms/weirdcore-aesthetic-spilled-coffee-chanterelle-mushrooms-pointer-32x32.png), pointer;
}

a:hover {
    text-shadow: 0px 0px 5px white;
}

a.active {
    text-shadow: 0px 0px 5px light-dark(white, #ccc);
}

i {
  background: transparent;
}

svg {
  background: transparent;
}

figcaption {
  font-size: 20px;
  text-align: center;
  margin: auto;
  color: light-dark(#2a5629, #2a247a);
}

figcaption p {
  color: light-dark(#2a5629, #2a247a);
}

@media ( max-width: 1100px ) {
figcaption {
  font-size: 16px;
} }

.thin-text {
  display: block;
  margin: auto;
  justify-content: center;
  padding: 0px 10%;
  max-width: 800px;
  text-align: center;
  background: transparent;
}

.card {
  margin: auto;
  padding: 0px -20px;
  height: 100%;
  width: 90%;
  background: light-dark(rgba(250, 250, 250, .5), rgba(250, 250, 250, .2));
  border: 5px solid transparent;
  border-radius: 40px;
  box-shadow: 0px 0px 10px black;
  color: light-dark(#2a5629, #2a247a);
}

.card p {
  color: light-dark(#2a5629, #2a247a);
}

.card-dark {
  padding: 0px 5%;
  width: auto;
  margin: auto;
  text-align: center;
  border: 2px solid light-dark(var(--light-color), var(--dark-color));
  border-radius: 20px;
  /*background: rgba(0, 0, 0, .2);*/
  background-image: url('assets/pinstripe.png');
  line-height: 0;
  color: light-dark(var(--light-bg), var(--dark-bg))); 
  text-shadow: 0px 0px 10px light-dark(rgba(250, 250, 250, .4), rgba(250, 250, 250, .2));
}

.card-dark a {
  background: transparent;
  text-decoration: none;
  color: light-dark(var(--light-bg), var(--dark-bg)));
}

.card-dark p {
  background: transparent;
  text-decoration: none;
  color: light-dark(var(--light-bg), var(--dark-bg)));
}

.pairagraph {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 98%;
  background: transparent;
}

.pair-image {
  margin: auto;
  padding: 5px 0px 0px 0px;
  max-width: 100%;
  height: auto;
  background: transparent;
}

.image-rounded {
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 90%;
  border: 4px solid white;
  border-radius: 40px;
}

@media ( max-width: 1050px ) {
.card-show {
  margin: auto;
  padding: 20px 0px;
  height: 100%;
  max-width: 850px;
  background: light-dark(rgba(250, 250, 250, .5), rgba(250, 250, 250, .2));
  color: light-dark(#2a5629, #2a247a);
  border: 5px solid transparent;
  border-radius: 40px;
  box-shadow: 0px 0px 10px black;
}

.card-hide {
  display: none;
}

.width-hide {
  display: none;
  text-align: center;
  max-width: 500px;
  padding: 0px;
  margin: auto;
}
  
.width-show {
  background: transparent;
  display: block;
  text-align: center;
  max-width: 850px;
  padding: 0px 5%;
  margin: auto;
} }

@media ( min-width: 1050px ) {
.card-hide {
  margin: auto;
  padding: 0px -20px;
  height: 100%;
  width: 90%;
  background: light-dark(rgba(250, 250, 250, .5), rgba(250, 250, 250, .2));
  border: 5px solid transparent;
  border-radius: 40px;
  box-shadow: 0px 0px 10px black;
  color: light-dark(#2a5629, #2a247a);
}

.card-show {
  display: none;
}

.width-hide {
  background: transparent;
  display: block;
  text-align: center;
  max-width: 500px;
  padding: 0px;
  margin: auto;
}

.width-show {
  display: none;
  text-align: center;
  max-width: 500px;
  padding: 0;
  margin: auto;
} }

footer {
  padding: 0px 0px 80px 0px;
  margin: auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  background-image: url('assets/footer-bg.png');
}

.footer {
  display: flex;
  font-family: "Comic Relief", serif;
  font-size: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  background: transparent;
}

@media ( max-width: 650px ) {
* {
  font-size: 20px; 
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
} 

h3 {
  font-size: 24px;
}

p {
  font-size: 20px;
}

.footer {
  font-family: "Comic Relief", serif;
  font-size: 14px;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}

.footer a {
  font-size: 14px;
} } 
