*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background: linear-gradient(135deg,#667eea,#764ba2);
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.container{
  background:white;
  padding:25px;
  width:350px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 0 15px rgba(0,0,0,0.3);
}

h1{
  margin-bottom:15px;
}

.meme-box img{
  width:100%;
  border-radius:10px;
  transition: transform 0.3s ease;
}

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


/*Loading theme*/
#loading{
  display:none;
  font-weight:bold;
  margin-bottom:10px;
}

#memeTitle{
  margin:10px 0;
}

button{
  background:#667eea;
  color:white;
  border:none;
  padding:10px 15px;
  border-radius:6px;
  cursor:pointer;
  margin:5px;
}

button:hover{
  background:#5563d6;
}

/*download Button */
#downloadBtn{
  display:inline-block;
  margin-top:10px;
  text-decoration:none;
  background:#28a745;
  color:white;
  padding:8px 14px;
  border-radius:6px;
}

/* Dark mode */
.dark{
  background:#121212;
}

.dark .container{
  background:#1e1e1e;
  color:white;
}

.dark button{
  background:#333;
}

/* credits */
.credit{
  margin-top:15px;
  font-size:12px;
  opacity:0.7;
}

.credit a{
  color:inherit;
  text-decoration:none;
}

.credit a:hover{
  text-decoration:underline;
}
