
body {
    margin: 0;
    padding: 0;
    background: url('../../images/bg.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.container {
    padding-top: 180px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    color: white;
    text-shadow: 2px 2px 4px black;
    margin-bottom: 30px;
}

select {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.image-container {
    border: 3px solid red;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    transition: transform 0.2s;
}

.image-container img {
    width: 300px;
    height: 200px;
    border-radius: 5px;
    cursor: pointer;
}
.btn-style-lsc {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border: 2px solid red;
  border-radius: 25px;
  background-color: #0c0c4e;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.btn-style-lsc:hover {
  background-color: #1a1a80;
  border-color: darkred;
  color: #fff;
}


.image-container p {
    color: white;
    font-size: 14px;
    margin: 5px 0 0;
}

/* Modal style */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1920px;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
