/* Reset some default browser styles */
body, h1, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

.buttons {
  background-color: #0033A0;
  color: #fff;
  border: none;
  padding: .5px 20px;
  border-radius: 5px;
  height: 1.4pc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttons:hover {
  background-color: #0056b3;
}

.heart {
  color: rgb(7, 160, 43); /* You can change the color to your preference */
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: gray; 
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #f7f7f7;
  padding: 10px 0;
}

footer a {
  color: #5d5c5c;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: #e74c3c; 
}

// DarkMode
header {
  position: relative;
}

#darkModeToggle {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.dark-mode {
  background-color: #333;
  color: #f4f4f4;
}

p#instruction {
  color: blue;
}