body {
        background-color: #0e0e0e;
}


#title {
    color: rgb(0, 255, 64);
    font: 24px Arial;
    font-weight: bold;
    font-size: 48px;
    text-align: center;
}

.love {
    display: block; /* or keep flex if you really need it inside */
    color: rgb(255, 0, 128);
    font-weight: bold;
    font-size: 100px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


#love_link {
    display: block;
    margin-top: 20px;
    font-size: 24px;
    color: rgb(255, 0, 128);
    text-decoration: none;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.popup h1 {
    color: white;
    margin-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
}

#four-zero-four {
    color: rgb(255, 0, 0);
    font: 24px Arial;
    font-weight: bold;
    font-size: 48px;
    text-align: center;
    margin-top: 200px;
}

.not-found-img {
    display: flex;
    margin: 20px auto;
    width: 200px;
    height: auto;
}

.input {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: 100vh;
}

.input input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 90%;
    max-width: 300px;
    padding: 16px;
}

#message_link {
    display: block;
    margin-top: 20px;
    font-size: 24px;
    color: rgb(25, 0, 255);
    text-decoration: none;
    text-align: center;
}   


#password {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 16px;
}

.love-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#secret_content {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    text-align: center;
}

#secret_input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 16px;
}

#secret_text {
    margin-top: 20px;
    color: rgb(255, 0, 128);
    font-size: 24px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}