html {
  box-sizing: border-box;
}

/* The Universal Selector */
*, /* All elements*/
*::before, /* All ::before pseudo-elements */
*::after {
  /* All ::after pseudo-elements */
  /* height & width will now include border & padding by default but can be overridden as needed */
  box-sizing: inherit;
}

body {
  background-color: #1a1a1a;
  color: #f6f6f6;
  /* Use a system font, if none are available use any found sans-sarif font */
  font-family: system-ui, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 
    'Helvetica Neue', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: auto;
}
section {
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content:space-evenly;
  align-items: flex-start;
  text-align: flex-start;
  margin-left: 30px;
  margin-right: 30px;
}
#EidtPostPage {
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
}

footer > div {
  display: flex;
  justify-content: space-between;
  padding: 0px 24px;
}
nav {
  background-color: #CE1141;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 0px 24px;
  border-color: #CE1141;
  min-height: 60px;
}
nav button {
  display: flex;
  background-color: white;
  border-radius: 8px;
  padding: 10px 16px;
  color: #000000;
  font-weight: 500;
}
nav > div {
  display: flex;
  height: 80px;
  align-items: center;
  cursor: text;
}
nav >div:first-child {
  display: flex;
  align-self: center;
  gap: 32px;
}
nav >div:last-child {
  display: flex;
  gap: 16px;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: auto;
}

.right {
  margin-left: auto;
}
footer{
  background-color: #CE1141;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 10px;
  border-color: #CE1141;
  margin-top: auto;
}
footer > button {
  background-color: #CE1141;
  border-radius: 8px;
  padding: 10px 16px;
  color: #CE1141;
  font-weight: 500;
  size: 200px;
}
#commentEdits  {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

#btn {
  display: flex;
  flex-direction: row;
  background-color: #CE1141;
  border-radius: 8px;
  padding: 10px 16px;
  color: black;
  font-weight: 500;
  size: 100px;
}
div #Title {
  display: flex;
  font-size: 75px;
}
#commentbtns {
  color: black;
  background-color: #CE1141;
  font-size: 33px;
  padding: 0px
}
#footer-buttons {
  color: black;
  background-color: #CE1141;
  padding: 0px
}
#Direct {
  background-color: #CE1141;
}
#CommentSubmission {
  display: flex;
  flex-direction: row;
  align-self: center;
}
#UpdateComment {
  display: flex;
  flex-direction: row;
  align-self: center;
}
#Author, #Comment {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  align-self: center;
  overflow: auto;
}
#showTitle {
  margin-bottom: 50px;
}
#EditHeading {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  overflow: auto;
}
#showLink {
  font-size: large;
  color: white;
}
.button-23 {
  background-color: #FFFFFF;
  border: 1px solid #222222;
  border-radius: 8px;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  display: inline-block;
  font-family: Circular,-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 13px 23px;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}

.button-23:focus-visible {
  box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow .2s;
}

.button-23:active {
  background-color: #F7F7F7;
  border-color: #000000;
  transform: scale(.96);
}

.button-23:disabled {
  border-color: #DDDDDD;
  color: #DDDDDD;
  cursor: not-allowed;
  opacity: 1;
}
#logout:disabled {
  pointer-events: none;
}

#logout:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

#logout:active {
  box-shadow: none;
  transform: translateY(0);
}
#tagChecker {
  color: white;
}
#ProfileList {
  color: white;
}

/* nav > section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 10px;

} */