/* Basics: background and theme colors!*/ /* Background! Change the link between the ("") to change the image. If you want the image to fit differently in the background you can change the word "cover", to "contain" or "fill"*/ div.background{ content: url("https://images.unsplash.com/photo-1562633243-28d2b1556b13?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); object-fit: cover; } /* These are for the color of the different buttons! "Background" controls the color of the box, "color" controls the color of the text, and "border-color" is the border color. Change the hexcode (the numbers after the #) to change the color. Right now its just set to black.*/ .bg5, .b5, div.box-title{ background: #000000 !important; border-color: #000000 !important; color: #000000 !important; }