* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #dcdcdc;
    font-size: 0.8rem;
}

header {
  text-align: center;
}

#headertitle {
  font-size: 3rem;
  font-weight: bold;
}

main {
  width: 80%;
  margin: 100px auto;
}



h1 {
    margin: 1rem 0rem 0rem 1rem;
}

p {
  padding: 0.5rem;
}

a {
  color: #000000;
}

a:hover {
  color: rgb(209, 184, 205);
}


/*---------- TEXTEDITOR ----------*/


/*---------- SYMBOLS ----------*/

#coolsymbols {
  display: flex;
  border: 1px solid #000000;
  justify-content: stretch;
  flex-wrap: wrap;
  margin: 1rem;
}

#coolsymbols div {
  outline: 1px solid #000000;
  width: 24%;
  text-align: center;
  flex-grow: 1;
  height: 20px;
  line-height: 20px;
}

/*---------- POST TEMPLATES ----------*/

#post-templates {
  margin: 1rem;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
}

#post-templates div {
  padding: 1rem;
  border-bottom: 1px solid #000;
}

#post-templates div:last-child {
  border: none;
}

/*---------- TAGS ----------*/
#maintags {
    margin: 1rem;
    display: flex;
    border: 1px solid #333;
    justify-content:stretch;
    flex-wrap: wrap;
}
.maintag {
    flex-grow: 1;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #333;
}

/* Style the tab */
.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    margin: 1rem;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: #000000;
    flex-grow: 1;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #fff;
    color: #000000;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #d2d2d2;
    color: #000000;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }

  .charactertags {
    margin: 1rem;
    display: flex;
    border: 1px solid #333;
    justify-content:stretch;
    flex-wrap: wrap;
  }

  .charactertag {
    flex-grow: 1;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #333;
  }