html {
    position:relative;
    background-color:black;
    color: aliceblue;
    /* border: dashed 1px rgb(113, 106, 177); */
    
}
body {
    position:relative;
    max-width:1080px;
    max-height:1920px;
    margin-left: auto;
    margin-right: auto;
    /* border: dashed 1px green; */
}
.phoneFrame {
   display: flex;
   justify-content: center;
   align-items: center;
   /* border: solid 1px magenta; */
}

/* .logo {
    position: inherit;
    margin-left: auto;
    margin-right: auto;
    height: 50px;
    width: 250px;
    background-color: lightgray;

} */
.hp-wrap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
.confessBooth img{
    position: inherit;
    display: block;
    width: 250px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
#confessForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: solid 1px green; */

}
#confessForm p {
    margin-bottom: 0;
    margin-top: 0;
    /* border: solid 1px red; */
}
.consent {
    display: flex;
    justify-content: center;
    /* border: solid 1px blue; */
}
#submitBtn {
    display: block;
    margin: 0 auto;
    margin-top: 5px;
}
footer {
    display: flex;
    font-size: 12px;
    justify-content: center;
    margin-top: 20px;
}

.modal {
    position: fixed;
    inset: 0;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
  }
  
  .modal.is-open {
    display: flex;
  }

  .modal-box {
    width: min(300px, 90vw);
    padding: min(10px, 20px);
    
    border: 1.5px solid white;
    background: #0b0b0b;
    color: #fff; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }



  .modal-box button {
    margin-top: 12px;

  }