:root {
  --idunn-black: #080c10;
  --idunn-gold: #a88142;
}

.body {
  background-color: var(--idunn-black);
}

.idunnbg {
  z-index: 100;
  opacity: 0;
  background-image: url('../images/beauty-aesthetics-northumberland.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  position: fixed;
}

.idunncontent {
  z-index: 20000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.idunn-wrapper {
  width: 1000px;
  max-width: 100%;
  padding: 40px;
}

.idunnlogo {
  width: 210px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading {
  color: var(--idunn-gold);
  text-align: center;
  font-family: Inconsolata, monospace;
  font-size: 20px;
  font-weight: 400;
  display: none;
}

.textblocks {
  color: var(--idunn-gold);
  text-align: center;
  width: 280px;
  max-width: 100%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-family: Inconsolata, monospace;
  font-size: 18px;
  font-weight: 700;
}

.idunnlinkbutton {
  border: 1px solid var(--idunn-gold);
  color: var(--idunn-gold);
  text-align: center;
  background-color: #080c10b0;
  width: 180px;
  max-width: 100%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
  font-family: Inconsolata, monospace;
  font-size: 18px;
  line-height: 1em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.165, .84, .44, 1), background-color .3s cubic-bezier(.165, .84, .44, 1);
  display: block;
}

.idunnlinkbutton:hover {
  color: var(--idunn-black);
  background-color: #a88142c2;
}

.idunnsocials {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.socials {
  width: 25px;
}

.textblocks2 {
  color: var(--idunn-gold);
  text-align: center;
  width: 260px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-family: Inconsolata, monospace;
  font-size: 16px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .idunn-wrapper {
    margin-top: -30px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .idunnbg {
    height: 100vh;
  }

  .idunncontent {
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
  }

  .idunn-wrapper {
    margin-top: 55px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .textblocks {
    width: 280px;
    max-width: 100%;
  }
}


