.gpoy-content {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #445972;

  min-height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  box-sizing: border-box;
}

.gpoy-content .header {
  width: 1000px;
  height: 80px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 170px 500px 170px;
  gap: 20px;
}

.gpoy-content .header img {
  display: block;
  position: relative;
  top: 60px;
  left: 40px;
}

.gpoy-content .dashboard {
  width: 900px;
  box-sizing: border-box;

  margin: 40px auto;

  display: grid;
  grid-template-columns: 150px 500px 150px;
  gap: 20px;

  background: #354760;
  border-radius: 8px;
  padding: 15px;
}

/* middle Tumblr feed */
.gpoy-content .feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 500px;
}

.gpoy-content .post-types,
.gpoy-content .post {
  background: white;
  border-radius: 8px;
  padding: 15px;
}

.gpoy-content img {
  max-width: 100%;
}

/* fake Tumblr icons */
.gpoy-content .post-types {
  display: flex;
  justify-content: space-around;
}

.gpoy-content .post-types div {
  text-align: center;
  font-size: 25px;
}

.gpoy-content .post-types img {
  display: block;
  align-items: center;
  width: 450px;
  height: auto;
}

/* posts */
.gpoy-content .post header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gpoy-content .post header img {
  width: 40px;
  height: 40px;
}

.gpoy-content .sidebar .avatar {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 4px;
  margin: 20px auto;
  display: block;
  position: relative;
  left: 22px;
  top: 2px;
}

.gpoy-content .button-1 a {
  height: 30px;
  width: 150px;
  background-color: rgba(138, 167, 93);
  border: 2px;
  border-radius: 4px;
  padding: 5px;
  gap: 5px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Helvetica;
  font-size: 15px;
  font-weight: bold;
  color: rgba(46, 55, 39);
  text-decoration: none;
  cursor: pointer;
}

.gpoy-content .button-2 a {
  height: 30px;
  width: 150px;
  background-color: #445972;
  border: 2px;
  border-radius: 4px;
  padding: 5px;
  gap: 5px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Helvetica;
  font-size: 15px;
  color: rgb(226, 226, 226);
  text-decoration: none;
  cursor: pointer;
}

.gpoy-content .gpoy-image {
  width: 100%;
  margin-top: 15px;
}

.gpoy-content .post-footer {
  font-size: 12px;
  color: #888;
  display: flex;
  justify-content: space-between;
}

.gpoy-content .white-triangle {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;

  border-right: 20px solid white;

  position: relative;
  top: -90px;
  left: 170px;
}

.gpoy-content .dashboard {
  display: grid;
  grid-template-columns: 170px 500px 170px;
  gap: 20px;
}

.gpoy-content .sidebar {
  grid-column: 1;
  grid-row: 1;
}

.gpoy-content .feed {
  grid-column: 2;
  grid-row: 1;
  width: 500px;
}

.gpoy-content .right-sidebar {
  grid-column: 3;
  grid-row: 1;
}
