body {
    text-align: center;
   background-color: rgb(209, 216, 216) ;
}

.E {
    border: 2px solid black;
    height: 250px;
    width: 250px;
    display: flex;
    margin: auto;
    margin-bottom: 10px;



}

.A {
    border: 2px solid black;
    height: 100px;
    width: 100px;
    margin: 10px;
    border-radius: 25%;
    background-color: orange;

}

.B {
    border: 2px solid black;
    height: 100px;
    width: 100px;
    margin: 10px;
    border-radius: 25%;
    background-color: blue;

}

.C {
    border: 2px solid black;
    height: 100px;
    width: 100px;
    margin: 10px;
    border-radius: 25%;
    background-color: red;
}

.D {
    border: 2px solid black;
    height: 100px;
    width: 100px;
    margin: 10px;
    border-radius: 25%;
    background-color: aqua;

}
.flash{
    background-color:white;
}
 .userflash{
    background-color:rgb(129, 222, 129);
 }
 .blue{
    color: blue;
 }
 .red{
    color: red;
 }
button{
    margin-bottom: 10px;
   
}
*, *::after, *::before {
  box-sizing: border-box;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 500px;
  max-width: 70%;

}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.modal-header .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-body {
  padding: 5px 10px;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}
.name{
    height: 100px;
    width: 100px;
   margin: auto;
   margin-top: 250px;
}
.but{
    height: 50px;
    width: 100px;
    
}
.dark{
  height: 50px;
}
.black{
  background-color: rgb(63, 62, 62);
  color: white;
  
}
.white{
  background-color: rgb(63, 62, 62);
}