body {
    background-color: #bf4c24;
}

/* Title */
h1 {
    color: black;
	font-family: courier;
    font-size: 300%;
}

/* Text */
h3 {
    color: black;
	font-family: courier;
}

/* Suggesting Emojis */
#suggest {
    color: black;
	font-family: courier;
	font-size: 80%;
	top: -35px;
	position: relative;
}

/* Suggesting Emojis Title */
#suggesttitle {
    color: black;
	font-family: courier;
	font-size: 120%;
	text-decoration: underline;
	top: -20px;
	position: relative;
}

/* The send button */
.button {
	color: #ad2d00;
	background-color: #e05b2c;
	position: relative;
	top:-146px;
	
}

/* The buttons */
.statebuttons {
	position: relative;
	top:-132px;
	
}

.input, .inputw {
	background-color: #eda187;
}

/* The preview rectangle */
#preview {
    width:105px;
    height:120px;
    background: #36393E;
}

/* The preview rectangle part 2 */
#preview2 {
    width:600px;
    height:120px;
	position: relative;
	top:-136px;
	left: 105px;
    background: #36393E;
}

/* The preview image */
#imgpreview {
    position: relative;
    top: 10px;
}

/* The preview text */
#textpreview {
    position: relative;
    top: 10px;
	color: white;
}

/* The preview text [...] */
#textpreview {
    position: relative;
    top: 10px;
	color: white;
}

/* The preview date */
#datepreview {
    position: relative;
    left: 10px;
	color: #4F5E5C;
	font-size: 60%;
}

#botpreview {
    position: relative;
    left: 5px;
	color: white;
	font-size: 90%;
	padding: 1px;
	background-color: #7289DA;
	border-radius: 4px;
}

/* The preview channel name*/
#channelpreview {
    position: relative;
	color: #437C43;
	font-family: courier;
	top:-339px;
	left: 25px;
}

/* The preview server logo*/
#serverpreview {
    position: relative;
    left: 5px;
	top:-312px;
	left: -51px;
}

.contentpreview {
    position: relative;
	color: #B9BABC;
	font-size: 90%;
	padding: -10px;
	line-height: 30%;
}


/* Covers Avatar */
#cover {
  position:relative;
  top:-94px;
  width:100px;
  height:100px;
  overflow:hidden; 
}

/* Shows Avatar */
#circle {
  position:relative;
  margin:10px auto;
  width: 80px;
  height:80px;
  box-shadow: 0 0 0 100px #36393E; 
  border-radius:50%;
}

#footer {
  clear: both;
  border-top:2px solid black;
}


.b {
	font-size: 120%;
	text-decoration: underline;
	padding: 2px 6px;
}

.dropbtn {
    background-color: #aa2c00;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ad2d00;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content .a {
    color: black;
    padding: 2px 6px;
    text-decoration: none;
    display: block;
	font-size: 100%;
}

/* Change color of dropdown links on hover */
.dropdown-content .a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:use .dropdown-content {
    display: block;
}


/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #c43401;
}

/* Tooltip text */
#tooltip .tooltiptext {
    visibility: hidden;
    width: 50px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text*/
    position: absolute;
    z-index: 1; 
}

/* Show the tooltip text when you mouse over the tooltip container */
#tooltip:hover .tooltiptext {
    visibility: visible;
}