* { 
  background-color:mediumpurple;
  font-family:'Courier New', Courier, monospace; 
  text-align: center;
}

body {
  padding-top: 100px;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: blueviolet;
}

.header, h2 {
 padding-bottom: none;
}

.start {
  padding: 25px;
}

.summary, .answer {
  padding-top: none;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  width: 75%;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.question {
  display: flex;
  flex-direction: column;
  width: 75%;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.beginbutton {
  border-style: outset;
  border-color: black;
  color: mediumpurple;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: black;
  margin-bottom: 25px;
}

.beginbutton:hover {
  color: mediumpurple;
  background-color: #3b3b3b;
}

.lower {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding-top: 50px;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  width: 30px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 20px;
  border-style: outset;
  border-color: black;
}

.button:hover {
  color: mediumpurple;
  background-color: #3b3b3b;
}

.dreams {
  padding-top: 25px;
  padding-bottom: 150px;
}

.holographic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-top: 25px;
}

.holographic-card {
  width: 300px;
  height: 200px;
  background: mediumpurple;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.holographic-card h2 {
  color: blueviolet;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    blueviolet
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px blueviolet;
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}