body{
    background-color: wheat;
    font-family: Arial, Helvetica, sans-serif;
    align-items: center;
    justify-content: center;
}
  .button {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 10px;
    cursor: pointer;
    border: 2px solid #ccc;
  
  }
  .button:hover {
  background-color: #555;
}

#pink { background-color: pink; }
#grey { background-color: grey; }
#black { background-color: black; }
#blue { background-color: blue; }
#red { background-color: red; }
h1{
    color: yellow;
    text-align: center;
    text-decoration: underline dotted;
      margin-bottom: 20px;
    
}
.top-right {
  position: absolute;
  top: 10px;
  right: 10px;
}
.github-button{
      background-color:white;
  color: rgb(23, 14, 14);
  padding: 10px 18px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.github-button:hover {
  background-color: #555;
}

