* {
    box-sizing: border-box;
}

body{
    background-color: rgb(231, 230, 230);
    text-align: center;
     min-height: 100vh;
     display:grid;
     place-content: center;
}

.container {
    width: 500px;
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
}
h1 {
    color: rgb(218, 216, 216)
}

p {
    color: rgb(248, 52, 3);
    font-size: 20px
}

#generate-btn {
    font-size: 15px;
    background-color: #fcfafa;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    color: rgb(2, 2, 2);
    border: none;
    margin-bottom: 10px;
}
#generate-btn:hover {
    background-color: #000;
    color: #c04545;
    text-decoration: underline;
}

.reset-btn {
    margin-left: 10px;
    padding: 3px;
    border-radius: 3px;
    border: 2px solid #fff;
    cursor: pointer;
    background-color: inherit;
    text-decoration: underline;
    border: none;
    color:grey;
    font-size: 14px;
}

#pass1, #pass2 {
    width: 150px;
    padding: 10px;
    border: none;
    color: rgb(134, 1, 1);
    border-radius: 3px;
    background: white;
    font-weight: bold; 
    font-size: 15px;   
}
.pass{
    display: flex;
    justify-content: center;
    margin-top: 20px;

}

.pass button {
    margin-right: 10px;
}

#copy-one, #copy-two {
    color: rgb(169, 174, 175);
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
}

#copy-two span {
    margin-bottom: -20px
}

i {
    color: rgb(116, 114, 114);
    margin-right: 5px;
    margin-top: 10px;
    font-size: 20px;
    cursor:pointer
}

i:hover{
    color: rgb(248, 6, 6);
}

#copy-two i {
    margin-bottom: -10px
}

.copy-btn {
    position: relative;
  }
  
  .copy-btn::after {
    content: "Copy";
    font-size: 11px;
    position: absolute;
    bottom: -10px;
    left: 70%;
    transform: translateX(-50%);
    background-color: #f2f2f2;
    color: #0e0d0d;
    padding: 6px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }
  
  .copy-btn:hover::after {
    opacity: 1;
  }
  