body {
    background-color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;

}

img {user-select: none; pointer-events: none;}

.container {
    width: 50%;
    min-height: 500px;
    border: 3px solid #000;
    box-shadow: #000 5px 4px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

.flex {
    gap: 10px;
    display: flex;
}

/* From Uiverse.io by alexreyes091 */
.btn {
    padding: 1rem 2rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: blueviolet;
    cursor: pointer;
    border-radius: 0.5rem;
    border-bottom: 2px solid blueviolet;
    border-right: 2px solid blueviolet;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transition: ease-in-out 1s;
    /* transition-duration: 1s;
    transition-property: border-top, border-left, border-bottom, border-right,
        box-shadow; */
}

.btn:hover {
    border-top: 2px solid blueviolet;
    border-left: 2px solid blueviolet;
    border-bottom: 2px solid rgb(238, 103, 238);
    border-right: 2px solid rgb(238, 103, 238);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240,   46, 170, 0.3) 10px 10px,
        rgba(240, 46, 170, 0.2) 15px 15px;
}

#typing {
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #0f0;
    animation: blink 0.7s infinite step-end;
}

@keyframes blink {
    from {
        border-color: transparent;
    }

    to {
        border-color: #0f0;
    }
}


#container2 {
  position: relative;
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  /* border: 2px dashed #ff69b4; */
}

.btn2 {
  position: absolute;
  width: 4rem;
  height: 2.5rem;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: 0.2s ease;
  user-select: none;
}

#yesBtn {
  background-color: #4caf50;
  color: white;
  left: 50px;
  top: 10px;
}

#noBtn {
  background-color: #f44336;
  color: white;
  top: 10px;
  left: 200px;
}

@media screen and (max-width:700px) {
    .container {
        width: 90%;
    }
}