body {
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    background-color: #f2f2f2;

    color: #333333;
}

.container {

    width: 90%;
    max-width: 1000px;

    margin: 40px auto;

    padding: 30px;

    background-color: white;

    border-radius: 8px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

    text-align: center;
}

h1 {

    margin-top: 0;

    margin-bottom: 30px;

    font-size: 30px;
}

label {

    display: block;

    margin-bottom: 10px;

    font-size: 18px;

    font-weight: bold;
}

#photoSelect {

    width: 100%;

    max-width: 600px;

    padding: 12px;

    font-size: 16px;

    border: 1px solid #999999;

    border-radius: 5px;

    background-color: white;
}

.photo-container {

    margin-top: 30px;

    padding-top: 20px;
}

#photo {

    display: block;

    max-width: 100%;

    max-height: 650px;

    width: auto;

    height: auto;

    margin: 20px auto;

    border-radius: 5px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

#description {

    margin-top: 15px;

    font-size: 20px;

    font-weight: bold;
}

#message {

    color: #666666;

    font-size: 16px;
}