* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
}

main {
  max-width: 520px;
  margin: auto;
}

.navbar {
  border-radius: 0.25rem;
}

.navbar-brand {
  color: #f6f6f6 !important;
  font-weight: 600;
}

.navbar-toggler {
  border-color: rgb(5, 230, 247);
}

.bg-white {
  background-color: #dc35d7 !important;
}

.mainHolder {
  display: grid;
  grid-template-rows: 50% 30%;
  height: 77vh;
  padding: 0.3rem 0.5rem;
  width: 86vw;
}

.messageHolderOne {
  border-bottom: 1px solid rgb(32, 218, 147);
  padding-top: 1rem;
  overflow-y: scroll;
  height: 36vh;
}

#messagesList {
  padding-left: 0.3rem;
}

.hidden {
  display: none;
}

.rightWardHo {
  margin-left: auto;
}

#msgFragStarter {
  display: none;
}

.msgFragStyle {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
  max-width: 11rem;
}

#msgFrag {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
  max-width: 11rem;
}

.userHolderMsg {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: baseline;
}

#userIcon {
  background-color: #c71585;
  border-radius: 1rem;
  height: 24px;
  width: 24px;
  margin-bottom: 0.5rem;
  display: grid;
  place-items: center;
}

#usrFull {
    margin-left: 0.4rem;
}

#msgTxt {
  background-color: #c715858c;
  color: #fff900;
  margin-left: 0.7rem;
  padding: 0.5rem 0.3rem;
  border-radius: 0.35rem;
}

#msgTime {
  font-size: 0.75rem;
  margin: 0.3rem 0 0 0.3rem;
}

.msgForm {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  height: 30vh;
  width: 84vw; 
  margin-bottom: 0.6rem; 
}

.sendMsgBtn {
  background-color: #31b904;
  font-size: 1.15rem;
  padding-left: 0.3rem;
  max-height: 3rem;
  margin-top: 0.3rem;
}

.signupBox {
  padding: 1.35rem 0 0 0.3rem;
}

.localTime {
  font-size: 0.8rem;
  text-align: center;
}

@media only screen and (min-height: 800px) {
  .mainHolder {
    height: 83vh;
    grid-template-rows: 60% 36%;
  }

  .messageHolderOne {
    height: 44vh;
  }
}

@media only screen and (min-width: 450px) {
  .mainHolder, .messageHolderOne, .msgForm {
    max-width: 450px;
  }
}
