/* wwwroot/css/site.css */

/* Reset some default styling */
body, h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
}

/* Basic styling for the grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/*.photo {
    
}

   */
.photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align content to the bottom */
    margin: 10px;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .photo img {
        max-width: 100%;
        height: auto;
    }

.photo-content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    width: 100%;
}

.small-vertical-gap {
    margin-top: 5px;
}
/* Styling for the upload form */
.form-group {
    margin-bottom: 15px;
}

/* Styling for buttons */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: #0056b3;
    }
/* Add styles for the welcome message */
.welcome-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center; /* Center the text horizontally */
}

    .welcome-message h1 {
        font-family: 'YourScriptFont', cursive;
        font-size: 2rem;
    }
