* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
}

header {
  font-family: Arial;
  text-align: center;
  background-color: #fffdd6;
  padding: 20px 0;
}

header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-size: bold;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #0056b3;
}

main {
  padding: 1px;
}

.row {
  display: flex;
  flex-direction: row;
  background-color: #d5d5d4;
}

.post-text-box h2,
.post-text-box h3 {
  margin-bottom: 40px;
}

.post-text-box {
  width: 66.66%;
  background-color: #eee;
  padding: 20px;
}

.profile{
  width: 33.33%;
  padding: 20px;
  text-align: center;
  background-color: white;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px 0;
}

footer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

footer a {
  margin: 5px;
  text-decoration: none;
  color: blue;
  padding: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
  max-width: 100%;
  margin:0px auto;
}

header {
  font-family: Arial;
  text-align: center;
  background-color: #fffdd6;
  padding: 20px 0;
}

header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-menu li a {
  text-decoration: none;
  color: red;
  font-size: bold;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: green;
}

main {
  padding: 1px;
	
}

.row {
  display: flex;
  flex-direction: row;
  background-color: #d5d5d4;
}

.post-text-box h2,
.post-text-box h3 {
  margin-bottom: 40px;
}

.post-text-box {
  flex: 70%;
  background-color: #eee;
  padding: 20px;
}

.profile{
  flex: 30%;
  padding: 20px;
  text-align: center;
  background-color: white;
}

.profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 10px 0;
}

footer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

footer a {
  margin: 5px;
  text-decoration: none;
  color: blue;
  padding: 20px;
}





