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

body {
  /* font-family: 'Comic Sans MS', cursive, sans-serif; */
  background: linear-gradient(to bottom, #4b0082, #228B22); /* purple to green */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 10px;
}

/* Nav bar full width */
nav {
  width: 100%;
  background: linear-gradient(90deg, #4b0082, #228B22); /* purple + green */
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  border-bottom: 4px solid #ffcc00; /* yellow highlight */
}

nav h3 {
  color: #ffcc00; /* yellow */
}

nav a {
  color: #ffcc00; /* yellow */
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  text-align: center;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  max-width: 600px;
  width: 100%;
}

/* Meme */
.meme-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.meme-placeholder img:hover {
  transform: scale(1.05);
}

/* Button */
button {
  padding: 10px 20px;
  background: #4b0082; /* dark purple button */
  border: none;
  border-radius: 8px;
  color: #ffcc00; /* yellow text */
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
  transition: transform 0.2s ease, background 0.2s ease;
}

button:hover {
  transform: scale(1.05);
  background: #6a0dad;
}

/* Time display */
#timeDisplay {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}
