
body {
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  background-color: rgb(21, 21, 21);
}

#app {
  margin: 20px auto;
  background-color: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-size: large;
}

#app-header{
  background-color:rgb(21, 21, 21);
  color: white;
}

#more-info{
  font-size: large;
}

.header-buttons{
  display: flex;
}

.home-button{
  width: 50%;
  background-color: rgb(21, 21, 21);
  color: white;
  /* border: solid rgba(255, 255, 255, 0.369); */
  border: none;
  border-radius: 10px;
}

.info-button{
  background-color: rgb(104, 104, 104);
  color: white;
  border: none;
  border-radius: 100%;
  height: 30px;
  width: 30px;
}

.post {
  border-bottom: 1px solid #ddd;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: white;
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-info {
  display: flex;
  flex-direction: column;
}
.user-name-block{
  display: flex;
}

.name {
  font-weight: bold;
  margin-bottom: 5px;
  
}

.profile-block {
  display: flex;
  align-items: center;
}

.profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 19%;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.follow-counts {
  display: flex;
  margin-top: 5px;
}

.following-count,
.follower-count {
  margin-right: 20%;
}


.user-name {
  color: #b0b0b0;
  margin-bottom: 5px;
}

.post-content {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.post-image {
  max-width: 100%;
  margin-top: 10px;
  margin-right: 10px;
}

.post-buttons {
  display: flex;
  justify-content: end;
  margin-top: 10px;
  font-size: large;
}

.button {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.button:hover {
  color: #3498db;
}

 .icon {
  margin-right: 5px;
} 
canvas {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 800px;
}

#additional-info{
  background-color: black;
  border-radius: 10px;
  padding: 20px;
}

@media only screen and (max-width: 600px){
	.following-count,
  .follower-count {
    margin-right: 10px;
  }
  .profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 10px;
  }
	}