body {
    background: radial-gradient(#e66465, #9198e5);
}

#main {
    display: grid;
}

#main p {
    width: fit-content;
    text-align: center;
    justify-self: center;
}

.text {
    text-shadow: 1px 1px 2px pink;
    color: red !important;
    font-size: 10rem;
    text-align: center;
}

#prompt {
    padding: 1rem;
    width: 75%;
    justify-self: anchor-center;
}

.reloadButton {
    justify-self: center;
    background-blend-mode: overlay;
    background: rgba(0, 0, 0, .7);
    width: fit-content;
    padding: 10px;
    border-radius: 8px;
    margin-top: 8px;
    transition: transform .2s;
}

#reloadPage {
    font: status-bar;
    text-decoration: none;
    color: white;
}

.reloadButton:hover {
    transform: scale(110%);
    transition: transform .2s;
}

.topnav {
    background-color: rgba(0, 0, 0, .7);
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: white;
    color: black;
}

.gallery {
    background: rgba(0, 0, 0, .7);
    border-radius: 4px;
    padding: 8px;
    justify-content: center;
    flex-flow: wrap;
    margin: 25px;
    display: flex;
    position: relative;
    place-self: center;
    object-fit: contain;
    max-inline-size: max-content;
    flex-wrap: wrap;
}

img {
    margin: 8px;
    object-fit: scale-down;
}

.shoppingList {
    color: white;
    background: rgba(0, 0, 0, .7);
    border-radius: 4px;
    padding: 16px;
    margin: 25px;
    place-self: center;
    border-left: 5px solid #9198e5;
}

.shoppingList li {
    margin-inline: 12px;
}