* {
    font-family: monospace;
}

body {
    background-color: rgb(0, 0, 43);
    color: chartreuse;
}

.artwork-border {
    border-style: groove;
    border-width: 8px;
    border-color: darkgoldenrod;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.padding-20 {
    padding: 20px;
}

button {
    background-color: rgb(0, 55, 255);
    color: rgb(255, 225, 0);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.text-yellow {
    color: yellow;
}

/* end global classes */

#fixed-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-image: url("https://karpverse.net/stars1.gif");
    background-position: inherit;
    position: fixed;
    width: 100%;
    z-index: 1;
}

.header-div {
    background-color: white;
    padding: 5px;
    border: 2px solid chartreuse;
}

.art-item {
    background-color: black;
    border-radius: 5px;
    padding: 10px;
}

.art-image {
    width: 400px; 
    height: 400px;
}

