.wrapper {
  display: grid;
  grid-auto-rows: minmax(0px, auto);
  grid-template-columns: minmax(0px, 1fr) repeat(8, minmax(0, 120px)) minmax(
      0px,
      1fr
    );
}
body {
  margin: 0;
}
header {
  padding-top: 20px;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 1;
  background-color: #0d1137;
  width: 100%;
  grid-row: 1 /2;
  grid-column: 2 / -2;
}
p {
  color: #ffffff;
}
h1,
h2 {
  margin: 0.2rem;
  color: #fafafa;
}
h1 a {
  padding: 2rem;
  font-size: 2rem;
  color: #be90d4;
}
a {
  color: #ffffff;
  text-decoration: none;
}
nav {
  width: 65%;
  text-align: center;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
#splash {
  background-color: #0d1137;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  grid-row: 2 / 3;
  grid-column: 2/ -2;
}
.hero {
  width: 33rem;
  height: 33rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#shopHero {
  width: 40%;
  -webkit-transform: rotate(350deg);
  -moz-transform: rotate(350deg);
  -ms-transform: rotate(350deg);
  -o-transform: rotate(350deg);
  transform: rotate(350deg);
  background-image: url(shopHero-50-percent.webp);
}
.selectedPage {
  border-bottom: 2px solid #be90d4;
}
.selectedPage:hover {
  border-bottom: 2px solid #ffffff;
}
.heroText {
  margin-bottom: 10rem;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.heroText p {
  position: relative;
  top: 15rem;
}
.threeColumn {
  display: flex;
  justify-content: space-between;
}
.threeColImg {
  border-radius: 8px;
  width: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.threeColTxt {
  color: #0d1137;
}
.column {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  width: 33%;
}
iframe {
  border: 0px;
  width: 50%;
  height: 75%;
}

main {
  /* position: relative;
  bottom: 15rem; */
  background-color: #fafafa;
  text-align: center;
  grid-row: 4 / 5;
  grid-column: 2 / -2;
}
.fluidMedia {
  background-color: #0d1137;
  background-image: linear-gradient(180deg, #0d1137 50%, #fafafa 50% 100%);
  position: relative;
  padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
}

.fluidMedia iframe {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 80%;
}
p {
  color: #be90d4;
}
a:hover {
  color: #be90d4;
}
.specialLink {
  padding: 5px 20px;
  border: solid 2px #be90d4;
}
.specialLink:hover {
  color: #be90d4;
  background-color: #0d1137;
}
#signUp {
  padding: 5px 50px;
}
footer {
  padding: 20px;
  color: #fafafa;
  background-color: #be90d4;
  text-align: center;
  grid-row: 5 / 6;
  grid-column: 2 / -2;
}
footer {
  color: #0d1137;
}
footer a {
  color: #0d1137;
}
footer a:hover {
  color: #ffffff;
}
* {
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}
