/* blog.css */
header{
  border-bottom: solid 1px #C9A300;
}
body {
  background: url("../background.gif");
  font-family: 'Times New Roman', serif;
  padding: 40px 20px;
}

main {
  max-width: 700px;
  margin: auto;
  background: #111;
  border: 2px solid #C9A300;
  border-radius: 1px;
 
}

h1 {
  color: #C9A300;
   font-family: "Henny Penny", system-ui;
  font-size: 48px;
  margin-bottom: 20px;
}

h2 {
  font-size: 13px;
  color:red;
}


img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.post {
    margin: 30px;
}
p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #CFE3FF;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: var(--accent);
  border-top: solid 1px #C9A300;
}

a {
  align-content: center;
   display:block;
  width:100%;
  margin-top: 20px;
  margin-bottom:20px;
  padding:8px 10px;
  background-color:#E0B119;
  border-radius: 100%;
  max-width: 20%;
  min-height: 50px;
  font-size:30px;
  color:black;
  cursor:pointer;
  font-weight: 500;
  transition:.25s ease;
  text-align: center;
  transition: transform 0.25s ease, color 0.25s ease;
  box-shadow: inset 0px -25px 12px -25px rgba(0, 0, 0, 1);
  text-decoration: none;
}

a:hover {
 color:black;
  box-shadow:0 0 8px rgba(224,177,25,.4);
  transform: scale(1.1);
  box-shadow: inset 0px -25px 12px -25px rgba(0, 0, 0, 1);
}



