私は単純なWebページにボタンを追加しようとしています。ボタン自体はすばらしいですが、私はそれをどのように配置するかについてはあまりよく分かりません。私はそれが中心に置かれ、本文の下に配置されることを望みます。現在、左側に座っています。どのように行うにはどのようなアイデアですか?CSSを使用してボタンの中心を合わせるにはどうすればよいですか?
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="spiekermann.css">
<title></title>
<style>
#logo {
width: 100%;
text-align: center;
padding: 10em 0 0.2em 0;
font-family: lato;
}
#sub {
color: #fff;
font-family: lato;
text-align: center;
word-spacing: 5em;
}
.button {
background-color: #3b3d45;
border: 6px solid #fff080;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: Arial;
font-size: 12px;
padding: 15px 20px;
text-decoration: none;
margin: auto;
text-align: center;
}
.button:hover {
background-color: #707488;
}
</style>
</head>
<body>
<div class id="logo">
<h1>ERIK SPIEKERMANN</h1>
</div>
<div class id="sub">
<p>Designer Typographer Entrepreneur </p>
</div>
<a href="#" class="button">Learn More</a>
</body>
</html>
ご協力いただければ幸いです。ありがとう!