* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #1a1a1a, #222222, #2d2d2d, #282828);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  text-align: center;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1 {
  color: white;
  margin: 20px 0;
  font-size: 48px;
}

#intro-text {
  color: #dedede;
  margin-bottom: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  color: #dedede;
  background-color: #1a1a1a;
  border-radius: 2em;
  padding: 4em 3em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

#quote {
  color: #d1f2eb;
  font-family: 'Poppins', sans-serif;
  margin: 15px;
}

.cool-line {
  width: 80%;
  height: 5px;
  border-radius: 1em;
  border: none;
  margin: 10px 0;
  background: linear-gradient(to right, #ff2200, #ffcc00);
}

.quoteBtn {
  padding: 35px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #ff2200;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border: none;
  transition: all 0.2s ease;
  font-size: 20px;
  user-select: none;
}

.quoteBtn:hover {
  transform: scale(0.95);
  background-color: #d70505;
  cursor: pointer;
}

.quoteBtn:active {
  transform: scale(0.85);
  background-color: #c73838;
}

  .home-button {
  position: absolute; 
  top: 15px;
  left: 15px;      
  width: 50px;     
  height: 50px;
  background-color: #d4aa00; 
  color: #FFFFFF;
  font-size: 1.8em;
  border-radius: 50%;   
  font-weight: 700;
  text-align: center;    
  text-decoration: none;   
  line-height: 50px;  
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 1000;            
  display: inline-block;
}

.home-button:hover {
  transform: scale(1.1);
  background-color: #b88f00;
}

.home-button:active {
  transform: scale(0.9);
  background-color: #a37d00;
}
