body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100vh;
  background-image: url("Background.jpg");
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  padding: 20px;
}

.container {
  display: grid;
  grid-template-areas:
    "top-left top-right"
    "button button"
    "bottom-left bottom-right"
    "bottom-text bottom-text";
  gap: 20px;
  text-align: center;
  position: relative;
}

.box {
  width: 150px;
  height: 200px;
  border: 2px solid white;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 1.6;
}

.text-top-right { grid-area: top-right; }
.text-bottom-left { grid-area: bottom-left; }
.text-bottom { 
  grid-area: bottom-text;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px;
  font-size: 12px;
  line-height: 1.4;
}

.button {
  grid-area: button;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: black;
  cursor: pointer;
  margin: auto;
}