body, html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  background-image: url('/images/bg.png');
  font-family: tan-mon-cheri;
  color: #ffbb0f;
}

.main-container {
  position: relative;
  height: 660px;
  width: 750px;
  border: 2px solid #84318C;
  padding: 40px;
  box-sizing: border-box;
  background-color: #432C4D; /* 432???? LIKE THE TSP CHARACTER??/ HAHAHHA */
}

a {
  color: #ffbb0f;
  text-decoration-style: double;
}

.sidebar {
  position: absolute;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: red;
}

.profile-img {
  width: 177px;
  height: 125px;
  border: 2px solid black;
  object-fit: cover;
}

.user-id {
  text-align: center;
  font-weight: bold;
}

.button {
  width: 100%;
  padding: 5px;
  background: #ddd;
  border: 1px solid #000;
  cursor: pointer;
}

.read-more {
  text-align: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.main {
  margin-left: 220px;
}

.top-row {
  display: flex;
  margin-bottom: 10px;
  background-color: orange;
  justify-content: space-between;
}

.art-box {
  width: 250px;
  height: 100px;
  border: 2px solid black;
  padding: 5px;
}

.notebook {
  width: 25%;
  height: 150px;
  padding: 5px;
  position: absolute;
  top: -20px;
  left: 630px;
  border: 2px solid #84318C;
  background-color: #432C4D;
}

.middle-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1px;
  background-color: yellow;
}

.desk-doodle {
  width: 228px;
  height: 175px;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.updates {
  position: absolute;
  left: 508px;
  width: 25%;
  height: 381px;
  border: 2px solid black;
  padding: 5px;
  font-weight: bold;
}

.chatbox {
  height: 300px;
  border: 2px solid black;
  margin-top: 10px;
  padding: 5px;
  object-fit: cover;
}

.blinkies {
  width: 100%;
  margin-top: 15px;
  height: 40px;
  border: 2px solid black;
  text-align: center;
  padding-top: 10px;
  font-weight: bold;
}
