/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Forevs-Medium";
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);    
  gap: 10px; 
  width: 50%; 
  height: 50vh; 
}

.grid-item {
  background-image: url('CHONGO.jpeg'); 
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat; 
}

.center-text {
  text-align: center;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-image: url('Chongy.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
  }
.center { display: block; margin-left: auto; margin-right: auto; width: 50%; }


<!DOCTYPE html>
<html>
<head>
<style>
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 300px;
}

.grid-item {
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-with-background {
    background-image: url('bgstar15.gif'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}
</style>
</head>
<body>

<div class="grid-container">
    <div class="grid-item">Item 1</div>
    <div class="grid-item item-with-background">Item 2 (Image)</div>
    <div class="grid-item">Item 3</div>
    <div class="grid-item">Item 4</div>
    <div class="grid-item">Item 5</div>
    <div class="grid-item">Item 6</div>
</div>

</body>
</html>