Update: Thank you for the answers and comments! I got it now! I basically just copied and pasted it in there, but I probably have a little bit more understanding now. Thank you!
I'm trying to place a custom button on a Squarespace site. I don't know html or css. I have the button, but can't seem to center it properly on the page, despite looking up a bunch of answers about centering buttons here.
How can I center this button?
<!DOCTYPE html>
<html>
<head>
<style>
.button {
background-color: #3B96F7; /* blue */
border: none;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button {
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button:hover {
background-color: #3DB8FE;
color: white;
}
.button {border-radius: 60px;}
</style>
</head>
<body>
<a href="https://www.childrenschoir.com/about-the-rvcc/"><button class="button button">About The Choir</button> </a>
</body>
</html>