body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  /* margin: auto; */
  width: 100%;
  max-width: 50rem;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: slategrey;
}

.left-pillar {
  height: 100vh;
  width: 65%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

.right-pillar {
  height: 100vh;
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}


.dropdown {
  position: relative;
  display: inline-block;
}

.drop-btn {
  background-color:rgb(83, 86, 90);
  color: white;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  min-width: 4rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 2px;
  /* left: -30%; */
  border-radius: 5px;
  background-color:rgb(83, 86, 90);
  min-width: 160px;
  box-shadow: 0 8px 16px 0 
rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: 
white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: 
white;
  color: 
#3498db;
}

/* .dropdown:hover .dropdown-content {
  display: block;
} */

html, body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
}

textarea {
  display: block;
  box-sizing: padding-box;
  overflow: hidden;
  padding: 10px;
  width: 80%;
  height: 60%;
  font-size: 14px;
  /* margin: 50px auto; */
  border-radius: 6px;
  box-shadow: 2px 2px 8px 
rgba(0, 0, 0, 0.3);
  border: 0;
}
textarea:focus {
  border: none;
  outline: none;
}

.char-count {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.sending-number {
  font-weight: 700;
  text-align: center;
  height: fit-content
}

.char-counter {
  margin-right: 3rem;
  font-weight: 700;
}

.group-picker {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.lower-block {
  height: 60%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin-bottom: 2rem;
}
/* 
button {

} */

.browse-btn, .send-btn {
  border-radius: 10px;
  width: 10rem;
  height: 3rem;
  border: 1px solid black;
  background-color:rgb(83, 86, 90);
}

.browse-btn:hover {
  cursor: pointer;
  transform: scale(1.02);
  font-weight: 700;
}

.send-btn:hover {
  cursor: pointer;
  transform: scale(1.02);
  font-weight: 700;
}

