body {
    font-family: system-ui;
    margin: 0;
    overflow-y: scroll;
    background-color: black;
}

.bg {
    width: 100%;
    height: 100vh;
    background: url(bg.jpg);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
}

h1 {
    margin: 0;
    text-align: center;
}

#h1Start {
    width: 75%;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

#h1Start::after {
    content: '|';
    animation: blink 1s infinite;
}

.divExplore {
    width: 100%;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30%, rgb(0, 0, 0));
    position: relative;
    margin-top: 100vh;
    padding-top: 200px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}
.boxes {
    width: 95%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 15px; /* Optional: Adds space between the grid items */
}

/* Style for the square boxes */
.squareBox {
    background-color: rgba(255, 255, 255, 0.132);
    width: 100%;
    padding-top: 100%; /* This makes it a square */
    position: relative;
    border-radius: 10px;
    cursor: pointer;
}
@media screen and (max-width: 1000px) {
    .boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 700px) {
    .boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}