body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    background-color: #f4f4f4;
    padding-bottom: 40px;
}

header {
    background-color: #ffffff;
    color: #333333;
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid #00AEEF;
}

header img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
}

nav {
    background-color: #333333;
    padding: 10px;
    text-align: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}

nav a:hover {
    background-color: #00AEEF;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,174,239);
}

.text-and-image {
    display: flex;
    align-items: flex-start;
}

.text {
    flex: 1;
    padding: 20px;
}

.image {
    flex-shrink: 0;
    width: 20%;
    text-align: right;
}

.image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.preview-button {
    background-color: #00AEEF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.preview-button:hover {
    background-color: #333333;
}

.download-button {
    background-color: #00AEEF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}

.download-button:hover {
    background-color: #333333;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
}

.modal-content, .close {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 50px;
    right: 100px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input[type="text"], form input[type="email"], form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    max-width: 100%;
}

form input[type="submit"] {
    background-color: #00AEEF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

form input[type="submit"]:hover {
    background-color: #333333;
}

.enter-page {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.enter-page img.enter-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0, 174, 239));
}

.enter-page h1 {
    font-size: 28px;
    color: #333333;
}

.enter-page p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 20px;
}

.enter-button {
    background-color: #00AEEF;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    border: none;
}

.enter-button:hover {
    background-color: #333333;
}

.profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #00AEEF;
}

.profile-text {
    max-width: 800px;
}

footer {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}