nav{
    margin: 2%;
  }
  

.locations{
    background-size: cover;
    background-image: url('../images/background-images/flat-world\(opaque\).png');
    background-position: top center;
    height: auto;
    width: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.locations p{
    margin-top: 2rem;
    width: 70%;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    min-width: 80%;
    gap: 2rem;
    margin: 3rem;
}
  
.document-container {
    user-select: none;  
    display: inline-block;
    text-align: left;
    max-width: 16rem;
    min-height: 25rem;
    background-color:#d2b48c;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  
.document-container img{
    max-width: 100%;
    height: 18rem;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
  
.document-container span{
    color: white;
    font-weight: bold;
    padding-left: 5%;
    word-wrap: break-word;
}
  
.document-container p{
    width: 90%;
    color: white;
    margin: 0;
    padding-left: 5%; /* Reset padding */
    line-height: normal; /* Reset line height */
}
  



