body{
    height: 100vh;
    background-color: lightgoldenrodyellow;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    direction: ltr;
}

.Parent{
    height: 400px;
    width: 400px;
    display: grid;

    grid-template-columns: 1fr 1fr 1fr 1fr ;
    grid-template-rows: 1fr 1fr 1fr 1fr ;
}

.item{
    margin: 1px;
    border-radius: 8px;
    background-color: lightcoral;
}

pre{
    border: 2px double rgb(4, 2, 80);
    border-radius: 25px;
}

.Modal_Container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.Modal {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  padding: 30px 50px;
  width: 500px;
}

.Modal h1,
.Modal p {
  margin-bottom: 17px;
}
.Avatar{
  width: 150px;
  border-radius: 50% ;
  margin: 10px;
}

.Show {
  opacity: 1;
  pointer-events: auto;
}