.container {
  display: grid;
  color: aliceblue;
  grid-template-columns: 3fr 1fr ;
  grid-template-rows: 24px 860px 24px;
  grid-template-areas:
  "div div"
  "wew pop"
  "final final";
  gap: 20px;
  width: 900px;
  height: 1100px;
}

.container div {
  background-color: black;
  grid-area: div;
  border: 3px solid gray;
  

}

.container wew {
  background-color: black;
  grid-area: wew;
  border: 3px solid gray;
}

.container pop {
  background-image: radial-gradient(rgb(107, 42, 85), black);
  grid-area: pop;
  border:3px solid gray;
}

.container final {
  background-color: black;
  grid-area: final;
  
}

body {
  background-image: radial-gradient(rgb(107, 42, 85), rgb(107, 42, 85), black);
}

.urls {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  display: grid;
  width: 800px;
}

.meifuevencare {
  display:grid;
  width:600px;
  grid-template-columns:1fr 3fr;
  align-content: center;
  
}

