body {
    font-family: 'Arial', sans-serif;
    background-image: url('background.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    height: 100vh;
    margin: 0;
}

.container {
    margin-top: 130px; 
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 400px; 
    max-width: 90%;
    animation: slideIn 0.5s ease forwards; 
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.description {
    margin-top: 20px; 
    padding: 20px; 
    font-size: 16px; 
    color: #555; 
    line-height: 1.5; 
    text-align: center; 
    background-attachment: fixed;
    background-color: rgba(250, 258, 255, 0.4);
    border-radius: 20px;
}

.icon {
    width: 40px; 
    height: auto; 
    vertical-align: middle; 
    margin-right: 10px; 
}

h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.select-container {
    margin: 20px 0;
}

select {
    padding: 12px 15px; 
    border-radius: 5px; 
    border: 2px solid #ccc; 
    font-size: 16px; 
    margin: 10px 0;
    width: 100%; 
    transition: border-color 0.3s, box-shadow 0.3s; 
    appearance: none; 
    background-color: #f8f9fa; 
}

select:hover {
    transform: scale(1.02); 
}

select:focus {
    border-color: #66afe9;
    outline: none;
}

.picture-title {
    margin-top: 20px;
}

img {
    border-radius: 10px;
    margin-top: 20px;
    max-width: 100%; 
    max-height: 250px; 
    display: none; 
    transform: scale(0.9); 
    transition: opacity 0.5s ease, transform 0.5s ease; 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    max-width: 100%; 
    max-height: 250px;
}

img.show {
    display:block; 
    opacity: 1;
    transform: scale(1); 
}

p {
    font-size: 18px;
}

.error-message {
    color: red;
    margin-top: 10px;
}

#loading {
    color: #555;
    font-weight: bold;
}