a{
    color: black;
}

.index-container{
    display: flex;
    flex-direction: column;
    margin-top: 10rem;
    align-items: center;
    height: 100vh;
    background-color: ghostwhite;
}

div.index-container > h1{
    font-size: clamp(32px, 3vw, 54px);
    font-weight: 400;
    margin: 10rem auto 4rem auto;
    padding-top: 2rem;
}

.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 45rem);
    gap: 1.5rem;
    justify-content: center; 
    width: 60%;
    height: 60%;
}

div.index-container > div > div{
    text-align: center;
    padding: 2rem;
    max-height: 40rem;
    box-shadow: 2px 2px 10px rgb(205, 205, 205);
    /* border: var(--border); */
    border-radius: .5rem;
}

div.index-container > div > div > a > div > div > img{
    max-width: 100%;
    width: 100%;
    height: 30rem;
    object-fit: cover;
    cursor: pointer;
}

div.index-container > div > div > a > div > h3{
    font-size: clamp(25px, 3vw, 33px);
    font-weight: 300;
}