html {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

body {
  position: relative;
  margin: 0;
}

/* h1 {
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  text-align: center;
  font-size: 3.5rem;
  margin: 0.5rem 0;
  transition: color 0.5s ease;
} */

h1:hover {
  color: #fff;
}

main {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

svg {
  width: 140px;
  fill: currentColor;
  color: rgb(157, 157, 0);
}

.dvd-box {
  width: 100%;
  height: 100%;
  background-color: #111;
}

/* Code for links */

.regular {
  position: absolute;
  font-weight: bold;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  color: #111;
  text-decoration: none;
  padding: 2rem 3rem;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 5rem;
  white-space: nowrap;
  box-shadow: -5px 0 5px white, 5px 0px 5px white, 0 -5px 5px white, 0 5px 5px white;
  transition: opacity 0.5s ease;
}

.regular:hover {
  opacity: 1;
}

.regular:active {
  transform: translate(-50%, -50%) scale(0.9);
}

p {
  margin: 0;
}

.footer {
  opacity: 0.1;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 2rem 3rem;
  border-radius: 3rem 3rem 0 0;
  transition: opacity 0.5s ease;
}

.footer:hover {
  opacity: 1;
}

/* jameSHIFT4 transition code */

/************
Normal HTML:
<span class="jame">jame<span class="shift4"><span class="shift4-s">S</span>HIFT4<span class="dollar" aria-hidden="true">$</span></span></span>

Link HTML:
<a class="jame" href="/">jame<span class="shift4"><span class="shift4-s">S</span>HIFT4<span class="dollar" aria-hidden="true">$</span></span></a>
************/

.jame {
  --jameshift4-color: #fff;
  position: relative;
  color: var(--jameshift4-color);
  text-decoration: none;
}

.shift4,
.shift4-s {
  position: relative;
  transition: color 0.5s ease;
}

.dollar {
  color: var(--jameshift4-color) !important;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  user-select: none;
  transition: color 0s, opacity 0.5s ease;
}

.jame:hover {
  color: var(--jameshift4-color);
}

.jame:hover .shift4 {
  color: rgba(255, 255, 255, 0.2);
}

.jame:hover .shift4-s {
  color: rgba(255, 255, 255, 0);
}

.jame:hover .dollar {
  opacity: 1;
}

.jame:active .dollar {
  color: #d4af37 !important;
}
