body {
    background-color: #252525;
  }
  
  h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-top: 2%;
    padding-bottom: 0.5%;
  }
  
  p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    font-weight: 575;
    font-size: 20px;
    padding-left: 1%;
    padding-right: 20%;
  }    

  details > summary {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 575;
    font-size: 20px;
    cursor: pointer;
    color: white;
  }

  summary {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 575;
    font-size: 15px;
    cursor: pointer;
    color: white;
  }

  details summary::before {
    margin-right: 10px;
    
  }

  button {
    border-color: white;
    border: 2px white;
    background-color: #484848;
    box-shadow: none;
    font-size: 20px;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    color: white;
    position: relative;
    transition: background-color 0.5s ease;
  }

  button:hover {
    color: black;
    background-color: white;
  }

  button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 2px solid #484848;
    box-sizing: border-box;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  button:hover::before {
    transform: scale(1);
  }

  .small {
    font-size: 16px;
  }
  