body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: linear-gradient(to bottom right, #92a8d1, #4682b4, #034f84);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#container {
    max-width: 800px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 120px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

input[type="email"],
input[type="password"],
input[type="file"],
input[type="text"],
button {
    margin-top: 10px;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.7);
    color: black;
}
textarea {
    margin-top: 10px;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.5);
    color: #333;
    width: 100%;
    min-height: 100px;
    resize: vertical; /* Allow vertical resizing */
}
#login-button {
    margin-left: -20px;
    margin-top: -20px;
    padding: 10px 20px;
    border: 2px none #0059b3;
    border-radius: 25px;
    font-size: 16px;
    background-color: transparent;
    box-shadow: 10px; 
    color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}
#login-button:hover {
    margin-left: -20px;
    margin-top: -20px;
    padding: 10px 20px;
    border: 2px none #0059b3;
    border-radius: 25px;
    font-size: 16px;
    background-color: transparent;
    box-shadow: 10px; 
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}



#home-button:hover {
    margin-right: 5px; /* Add a margin to separate buttons */
    margin-top: -30px; /* Add a margin to separate buttons */
    margin-top: 10px;
    padding: 10px 20px;
    border: 2px none #0059b3;
    border-radius: 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 10px; 
    color: black;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

#content {
    margin-top: 40px;
    text-align: left;
}

.item {
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow effect */
}
.smaller-date {
    font-size: 12px; /* Adjust the font size as needed */
    color: gray; /* Set the color to gray */
}

.item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.item p {
margin: 10px 0;
}
        

.message-image {
    margin-top: 10px; /* Add space between image and text */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.bold-text {
    font-weight: bold;
}

.underlined-text {
    text-decoration: underline;
}

.large-text {
    font-size: 20px;
}