body {
    background-image: url('Circus-Background.png');
    background-size: cover;
    background-position: center;
    font-family: Georgia, serif;
}

#timeBox {
    background-color: var(--teal);
    width: 300px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

#jokeBox {
    background-color:var(--blue);
    width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

#searchBox {
    width: 400px;
    padding: 12px;
    border: 2px solid var(--brown);
    border-radius: 20px;
    font-size: 16px;
    font-family: Goergia, serif;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}

#bookmarksContainer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.bookmarkBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--teal);
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-family: Georgia, serif;
}

.bookmarkBtn img {
    width: 20px;
    height: 20px;
}

#musicButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--brown);
    border: 2px solid var(--brown);
    border-radius: 20px;
    padding: 12px 20px;
    font-family: Georgia, serif;
    cursor: pointer;
}

:root {
    --teal: #7ea99b;
    --blue: cadetblue;
    --brown: burlywood;
}

#colorPickers {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}
