body {
    font-family: Verdana, sans-serif;
    text-align: center;
    padding: 0;
    font-size: 18px;
    color:whitesmoke;
    background-color: darkslategray;
    margin-left: 50px;
    margin-right: 50px
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {

    font-size: 36px;
    color: whitesmoke;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
}

@media (max-width: 800px) {
    h1 {

        font-size: 16px;
    }
    }
    

/* #artwork-container {
    max-width: 60%;
    margin-bottom: 0px;
  
}
*/

#artwork {
    max-width: 600px;
    max-height: 400px; /* Set the maximum height */
    height: auto;
}

@media (max-width: 1050px) {
#artwork {
    max-width: 100%;
    max-height: 400px; /* Set the maximum height */
    height: auto;
}
}


@media (max-width: 800px) {
    #artwork {
        min-width: 100%;
        /*max-height: 400px;  Set the maximum height */
        height: auto;
    }
    }
    
    






#artTitle {

    text-transform: uppercase;
    margin-top: 2px;
    max-width: 800px;
    text-wrap: pretty;
}

#loading-message {
   max-width: 400px;
   text-wrap: pretty;
    font-size: 20px;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}
#artInfo {
    margin-top: 5px;
}

#style, #description {
    font-style: normal;
}

button {
    background-color: black; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

button:hover {
    background-color: darkgreen;
    color: white;
}
button:active {
    background-color: green;
    color: white;
}       