body {
    background-color: #1a1a1a;
    color: white;
    color: white;
    font-family: Arial, sans-serif;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .box {
    background-color: #2a2a2a;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }


.box-text {
  background-color: #605454;
  padding: 10px;
  border-radius: 0 0 5px 5px;
}

.box-textt {
  background-color: #605454;
  padding: 10px;
  border-radius: 0 0 5px 5px;
}

.box-text p {
  margin: 0;
}

.box-textt p {
  margin: 0;
}
  
  
  .copy-btn {
    background: linear-gradient(to bottom, #d96f6f, #74577e);
    color: white;
    border: none;
    padding: 10px;  
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .copy-btn:hover {
    background: linear-gradient(to bottom right, #333333, #555555);
  }

  .notch {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  @media only screen and (max-width: 768px) {
    .box {
      max-width: 100%;
      margin: 10px 0;
    }
  }