body {
  font-family: "Roboto Condensed";
}

a {
  color: #00B7FF;
}




.centerPanel {
  border: 1px solid #737373;
  border-radius: 5px;;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color:hsla(0, 0%, 96%, 0.727);
  width:500px;
  filter:drop-shadow(5px 5px 3px #515151e2);
  padding-left:15px; padding-right:15px;
  font-size:18px;
}
.centerPanel h2{ 
  font-size:24px;
  font-weight: 500;
  text-align: center;
}

.resizer {
  width: 5px;
  background-color: #ff0000;
  cursor: ew-resize;
  position: absolute;
  top: 0;
  bottom: 0;
}

body {
  user-select: none;
}

.alert{
  padding:0px;
  margin:0px;
  width:100%;
  height:100%;
  position:absolute;
  background-color: rgba(0, 0, 0, 0.85);
  z-index:50;
}

.message{
  width:400px;
  height:250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding:30px;
  background-color: rgb(209, 209, 209);
  z-index:60;
  border-radius: 8px;
  border:3px solid black;
}

.message   h4 {
  font-size:24px;
}

.message .buts{
  display: flex;
  align-items: center;
  justify-content: center;

  padding-top:30px;
}

.message .leftB{
  width: 50%;
  text-align: center;

}

.message .rightB{
  width: 50%;
  text-align: center;

}

