/* css/style.css */

body {
  background-image: url("../asset/slide1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;

  /* Menambahkan properti untuk memposisikan konten di tengah layar */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Memastikan body mengisi seluruh tinggi viewport */
  margin: 0;
}

.container {
  padding-top: 0; /* Tidak perlu padding-top karena body sudah di tengah */
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 800px;
}

.col-md-6 {
  flex: 1;
}

.kotak1,
.kotak2 {
  width: 100px;
  height: 100px;
  border: 1px solid grey;
  box-shadow: 0px 0px 5px black;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;

  /* Menambahkan properti untuk mengubah kursor */
  cursor: pointer;
}

.kotak1 img,
.kotak2 img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
