body {
    background-color: black;
    user-select: none;
}

.header {
    color:white;
    font-family: 'Optima nova LT Pro';
    font-size: 1.3em;
    font-weight: 900;
}

.header h3 {
    font-style: italic;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-gap: 5px;
    margin: 0 auto;
}
  
.image-container {
    border: 2px solid white;
    border-radius: 15px;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}
  
.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.credits {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.404);
    padding: 10px;
    font-family: 'Optima nova LT Pro';
    font-weight: 700;
}
  
.credits h3 {
    margin-top: 1;
    font-size: 1.7em;
    font-weight: 900;
}
  
.credits p {
    font-size: 1.2em;
}

.credits a {
    text-decoration: none;
    color: #e11dff;
}
  
.download-btn {
    text-align: center;
}

.button-wip {
    display: inline-block;
    padding: 8px 20px;
    font-size: 1.2em;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    border: 2px solid #ff2c25;
    color: #ff2c25;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.button-wip:hover {
    background-color: #ff2c25;
    color: white;
    cursor: not-allowed;
}

.button-done {
    display: inline-block;
    padding: 8px 20px;
    font-size: 1.2em;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    border: 2px solid #42f2ff;
    color: #42f2ff;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.button-done:hover {
    background-color: #42f2ff;
    color: white;
    cursor: pointer;
}

.overlay {
    display: flex;
    justify-content: center;
    font-size: x-large;
    font-family: sans-serif;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(25px);
    z-index: 9999;
}

.warning {
    background-color: #ffcccb;
    color: #000;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e74c3c;
    text-align: center;
    font-size: 1.3em;
}

.reveal-btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    margin-top: 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.2em;
}