.choicer{
    display: flex;
  position: absolute;
  z-index: 9999999999;
  background-color: #0a0a0a;
  border-bottom: #ff6000 3px solid;
  color:white;
  width: 100%;
  height: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: comeDown 1.5s ease-in linear;
}

.choicerPOne{
    font-size: 20px;
    max-width: 90%;
    text-align: center;
}

.choicerPTwo{
    text-align: center;
    font-size: 20px;
    max-width: 90%;
}

.choicerBtn{
   background-color: #ff6000;
  padding: 5px;
  border-radius: 15px;
  min-width: 80px;
  min-height: 36px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: black;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.choicer_Btns{
     display: flex;
  gap: 2em;
  margin-top: 2em;
}

@keyframes comeDown {

  0%{top: -100%}
  100%{top: 0%}

}