
h1 {
    text-align: center;
}

p {
    text-align: center;
}

a {
    color: #0086EF;
  }

div {
    text-align: center;
}

body {
    background-color: rgb(0, 0, 0); 
    color: rgb(224, 224, 224)
}

img {
    max-width: 100%;
}

.button {
    width: 60px;
    height: 60px;
    background-color: #0086EF; /* Blue */
    border: none;
    color: white;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 1%;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .button1 {
    background-color: white; 
    color: black; 
    border: 2px solid #0086EF;
  }
  
  .button1:hover {
    background-color: #0086EF;
    color: white;
  }

  .disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }