/* Import Dosis font */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&display=swap');

body {
    font-family: 'Dosis', sans-serif; /* Apply Dosis to all text */
}

.background-blur {
    background-image: url('Back.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(5px);
    position: fixed; 
    top: 0;
    transform: scale(1.05); 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

.centered-heading {
    text-align: center; 
    font-family: 'Dosis', sans-serif;
    color: white; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
    font-weight: bold; 
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 20%)); 
    justify-content: center;
    gap: 15px;
}

.asset {
    text-align: center;
    background-color: #333; /* Dark gray background */
    border-radius: 5%;
    padding: 10px;
    aspect-ratio: 1 / 1;
}

.asset h2 {
    font-weight: bold; 
    color: white; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
}

.asset p {
    color: white; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
}

.asset a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6a0dad; /* Dark purple background */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'Dosis', sans-serif; 
}

.asset a:hover {
    background-color: #4b088a; /* Slightly darker purple on hover */
}
.asset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5%; /* Add rounded corners to the image */

}