:root {
    font-size: 16px;
}
* {
    cursor: url('/shrines/Unicornos/unicur.png'), auto;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Billo';
  src: url(/shrines/Unicornos/BILLO___.TTF);
}
body {
    font-family: 'MS Gothic';
    color: rgb(56, 0, 82);
    display: flex;
    flex-direction: column;
    background: rgb(255,179,250);
    background: linear-gradient(180deg, rgba(255,179,250,1) 0%, rgba(255,231,205,1) 73%, rgba(190,255,254,1) 100%); 
  }
header {
  display: grid;
  max-width: 37.5rem;
  height: 10.438rem;
  background-image: url('/shrines/Unicornos/plaid.png');
  margin: 1rem auto;
  padding: 1rem;
  text-align: center;
  align-items:center;
  border: 4px solid #ff0098;
  border-radius: 4rem;
}
header img {
  position: relative;
  bottom: 30px;
  width: 80%;
  margin: 0 auto;
}
h1 {
  font-family: 'Billo';
  font-weight: lighter;
  font-size: 2.45rem;
  color: rgb(154, 2, 255);
  text-shadow: 0 0 6px rgb(0, 255, 149), -1px -1px 6px rgb(0, 255, 149);
}
h2 {
  font-family: 'Billo';
  font-weight: lighter;
  font-size: 2rem;
  color: #ff8af5;
  text-shadow: 2px 2px 1px red, -1px -1px 1px red;
  background-image: url(/shrines/Unicornos/mesh.png);
  margin: 1rem;
  padding: 8px;
  width: fit-content;
  border-radius: 2rem;
  border: 2px dotted rgb(154, 2, 255);
}

main {
  display: inline-flex;
  flex-direction: column;
  max-width: 66rem;
  margin: 0 auto;
}
.wrapper {
  display: inline-flex;
flex-direction: column;
justify-content: center;
}
.wrapper > main:nth-child(2) > div:nth-child(4) {
  max-width: 500px;
  margin: 0 auto;
}

.text-box {
  padding: 2rem;
  margin: 1rem;
  border: 2px dotted red;
  border-radius: 25px;
  box-shadow: 0 0 4px rgb(233, 143, 255);

}
.toy-box {
  display: inline-flex;
flex-direction: column;
align-items: center;
margin: 1rem;
}

.gallery {
  display: inline-flex;
  flex-direction: row wrap;
}

.gallery img {
  max-width: 300px;
  margin: 2px;
}
a , a:visited {
  color: deeppink;
}
@media (max-width: 1075px) {
  :root {font-size: 14px;}
}
@media (max-width: 945px) {
  :root {font-size: 12px;}
}

/* ~~~~fun stuff~~~~ */
::-moz-selection { /*Firefox */
  color: rgb(255, 218, 244);
  background: #ffaaf4;
}

::selection {
  color: rgb(255, 218, 244);
  background: #ffaaf4;
}

 