/* body all colorway */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: whitesmoke;
}

h1 {
  background-color: brown;
  color: white;
  text-align: center;
  margin: 0;
  padding: 2rem;
}

/* Login and register form style for both and blog*/
.container {
  align-items: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}


/* block form style for both and blog*/
.login-block,.register-blocks {

  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.information {
  margin: 1rem 0;
}

label {
  display: block;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  width: 100%;
}

.thebutton {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  background-color: black;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Profile pic style */
.container-two {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

h2 {
  color: black;
  text-align: center;
  margin: 0;
  padding: 1rem;
}

img {
  border-radius: 50%;
  margin-top: 1rem;
}

h3 {
  margin-top: 1rem;
  text-align: center;
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-post {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
}

.blog-post h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-post p {
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-post small {
  font-size: 12px;
  color: gray;
}
