* {
  margin: 0;
  padding: 0;
  border: none;
  font-family: Arial, sans-serif;
}
body {
  background-color: #eee;
}
.container {
  padding-top: 40px;
  padding-left: 40px;
}
h1 {
  font-size: 2.2rem;
  text-align: center;
  width: 400px;
  background: -webkit-linear-gradient(90deg, red, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2.2rem;
  text-align: center;
  width: 400px;
  display: none;
}
p.cool-text {
  font-size: 18px;
  transition: color 1s, transform 1s;
}
.img-row img {
  border-radius: 25px;
  height: auto;
}
.img-row {
  display: flex;
  gap: 20px;
  justify-content: left;
  align-items: flex-start;
}
.cool-text:hover {
  color: orange;
  transform: scale(1.2);
}
.hidden {
  display: none;
}
#fadeImage {
  width: 350px;
  margin-top: 15px;
}
button {
  margin: 5px;
  padding: 8px 15px;
  background: #f4a261;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background: #e76f51;
  color: #fff;
}
#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.snowflake {
  position: absolute;
  top: -10px;
  font-size: 24px;
  color: white;
  text-shadow: 0 0 5px #000;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}
