body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(-45deg, #ff9a9e, #fecfef, #ffecd2, #fcb69f);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: #333;
    text-align: center;
    padding: 50px;
    margin: 0;
    position: relative;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.edit-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.edit-menu button, .edit-menu a {
    background: #e91e63;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #e91e63;
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 20px 0;
}

.hearts {
    font-size: 2em;
    margin-top: 30px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

button[type="submit"], button[type="button"] {
    background: #e91e63;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    margin-right: 10px;
}

button[type="submit"]:hover, button[type="button"]:hover {
    background: #c2185b;
}