@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  line-height: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 22% auto auto;
      grid-template-columns: 22% auto auto;
}

header {
  padding: 1em;
  overflow: hidden;
  position: relative;
  scroll-behavior: auto;
}

header i.fa-twitter {
  color: #1DA1F2;
  font-size: 36px;
  margin-left: 14px;
  padding: 12px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header i.fa-twitter:hover {
  background-color: #1da0f22c;
}

header nav {
  margin-top: 1em;
}

header nav ul {
  list-style: none;
  margin: 0;
  zoom: 1.3;
}

header nav ul li {
  color: black;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: large;
  font-weight: 600;
  line-height: 2.4em;
  border-radius: 100%;
  padding-bottom: 0.1rem;
}

header nav ul li > a {
  padding-right: 1.5rem;
  padding-left: 0.6rem;
  border-radius: 24px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
}
header nav ul li a > span {
  margin-left: 0.8rem;
}

header nav ul li > a:hover {
  background-color: #1da0f22c;
  color: #1DA1F2;
}

header nav ul li i.fa-ellipsis-h {
  font-size: 24px;
}

header nav button.tweet-button {
  background-color: #1DA1F2;
  color: white;
  border: none;
  font-weight: bold;
  font-family: "Roboto",
 sans-serif;
  padding: 1em;
  width: 100%;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 1rem;
  margin-right: 1rem;
}

header nav button.tweet-button:hover {
  -webkit-filter: brightness(85%);
          filter: brightness(85%);
}

.tweet-button:focus {
  outline: 0 !important;
}

.main-body-container {
  border: 0.4px solid;
  border-color: rgba(128, 128, 128, 0.301);
  border-top: none;
  width: 43rem;
}

.tweet {
  background-color: white;
  padding: 1em;
  border: 0.4px solid;
  border-color: rgba(128, 128, 128, 0.301);
  cursor: pointer;
}

.tweet:hover {
  background-color: rgba(128, 128, 128, 0.225);
}

.tweet-profile-image {
  width: 42px;
  border-radius: 100px;
}

.tweet-user-details-layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tweet-full-name {
  font-family: "Roboto",
 sans-serif;
  font-weight: 600;
  margin-left: 6px;
}

.tweet-username {
  color: gray;
  font-size: small;
  margin-left: 4px;
}

.tweet-content {
  padding: 1em;
}

.tweet-action-layer {
  width: 100%;
  margin-top: 1em;
}

.tweet-action-layer > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.tweet-action-layer > ul > li {
  margin-right: auto;
  margin-left: auto;
  color: gray;
  cursor: pointer;
}

.tweet-action-layer > ul > li:hover {
  color: #1DA1F2;
}

.section-title {
  width: 100%;
  border-bottom: 0.4px solid;
  border-color: rgba(128, 128, 128, 0.301);
  padding: 1rem
}

.create-tweet-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 100%;
      grid-template-columns: auto 100%;
  padding: 1em;
  font-family: "Roboto", sans-serif;
}

.create-tweet-section-right {
  width: 90%;
  font-family: "Roboto", sans-serif;
}

.tweet-text-area {
  resize: none;
  border: none;
  padding: 0.5em;
  height: 3em;
  width: 100%;
  font-size: 24px;
  font-weight: inherit;
  font-family: "Roboto", sans-serif;
  background-color: none;
  overflow: hidden;
}

.tweet-text-area:focus {
  outline: none;
}

.tweet-type-option {
  color: #1DA1F2;
  font-weight: 600;
  font-size: small;
}

.tweet-button {
  background-color: #1DA1F2;
  color: white;
  border: none;
  font-weight: bold;
  font-family: "Roboto",
 sans-serif;
  padding: 1em;
  width: 100%;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tweet-button:hover {
  -webkit-filter: brightness(85%);
          filter: brightness(85%);
}

.create-tweet-action-layer {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: 87% auto;
}

.create-tweet-action-layer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.create-tweet-action-layer > div > i {
  margin-right: 1em;
  color: #1DA1F2;
}

.create-tweet-action-layer > button {
  width: 100px;
}
/*# sourceMappingURL=style.css.map */