body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('landingpagebackdrop.png') no-repeat center center fixed;
    background-size: cover;
    background-color: white;
    background-blend-mode: overlay;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header {
    margin-bottom: 20px;
    position: relative;
}

.header h1 {
    font-size: 2.5rem;
    color: black;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px black;  /* Adding a black outline */
    display: inline-block;
    padding: 10px;
    border: 2px solid black;
    box-shadow: 0 0 0 0 black;
    animation: fadeInTitle 3s forwards, borderAnimation 2s forwards;
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderAnimation {
    0% {
        box-shadow: 0 0 0 0 black;
    }
    100% {
        box-shadow: 0 0 0 2px black;
    }
}

.category-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-link {
    margin: 15px;
    text-decoration: none;
}

.clickable-image {
    width: 80%;
    max-width: 300px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.db-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px; /* Increased size for better readability */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.db-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .category-selection {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    .clickable-image {
        max-width: 45%;
    }

    .image-link {
        margin: 10px 0;
    }
}

.modal-content h2 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-content div {
    margin: 10px 0;
}

.modal-content label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-content button:hover {
    background-color: #45a049;
}
