Button Color

<!DOCTYPE html> <html> <head> <title> Button </title> </head> <body> <div class =" contianer "> <a href =" # "> <span> Read More </span> </a> <a href =" # "> <span> Read More </span> </a> </div> <style type =" text/css "> *{margin: 0px; padding: 0px; font-family: arial;} .contianer{ min-height: 100vh; display: flex; justify-content: center; align-items: center; flex-direction: column;} .contianer a{ position: relative; width: 300px; height: 75px; margin: 10px 0px; font-size: 24px; display: inline-flex; justify-content:center; align-items: center; text-decoration: none; transition: 0.5s; color: #000;} .contianer a:hover{color: #fff;} .contianer a:before{content: ''; position: absolute; top:0px; left: 0px; width: 0; height: 100%; background: url(btn-bg1.png); background-size: cover; transf...