/* GENERAL */

body
{
    background-color: rgb(0, 0, 0);
}
header
{
    text-align: center;
    color: aqua;
}
button {
  padding: 12px 20px;
  background-color: rgb(70, 121, 36);
  color: white;
  border-radius: 8px;
  font-size: 16px;
}
button:hover {
  background-color: rgb(53, 59, 47); 
  transform: scale(1.1);
  transition: transform 0.5s;
  cursor: pointer;
}


