@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #262626;
}

.container {
  margin: auto;
  max-width: 700px;
  height: 100vh;
}

.container .box {
  height: 100%;
  background: #dedede;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  background: #f2f2f2;
  height: 10%;
}

header .logo {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo a {
  text-decoration: none;
}

header .logo a h1 {
  color: #2063d8;
  letter-spacing: 2px;
}

header .menu {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .menu a {
  margin: 0px 20px;
}

header .menu a i svg {
  color: #3a3a3a;
  width: 22px;
}

main {
  overflow: auto;
  height: 90%;
  background: #e4e4e4;
}

main .profileroom {
  width: 100%;
  height: 100%;
}

.coverimg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 160px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.profileimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profileimg img {
  width: 180px;
  border-radius: 50%;
  position: relative;
  margin-top: -80px;
  z-index: 1;
  height: 180px;
}

.content {
  padding: 10px;
  color: #414141;
  letter-spacing: 1px;
}

.content h1 {
  text-align: center;
}

.content p {
  text-align: center;
  font-size: 20px;
}

.about {
  margin: 20px;
  background: white;
  border-radius: 10px;
  padding: 15px;
}

.about h1 {
  color: #456cd0;
}

.about h2 {
  color: #484848;
}

.about h2 span {
  color: #6b6b6b;
  font-size: 20px;
}

.postbtn {
  background: white;
  width: 90%;
  margin: auto;
  border-radius: 10px;
}

.postbtn a {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.inputpost {
  display: none;
  z-index: 11;
  position: relative;
  background: #f2f2f2;
  top: 0;
  left: 0;
  border: 2px solid black;
  padding: 10px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.inputpost span svg {
  width: 30px;
  color: #292929;
}

.inputpost textarea {
  padding: 7px;
  border: none;
  width: 100%;
  height: 100px;
  font-size: 20px;
}

.inputpost input {
  height: 40px;
  width: 200px;
  border: none;
  font-size: 25px;
  letter-spacing: 2px;
}

.inputpost #post {
  background: #5e5e5e;
  color: gainsboro;
}

.postroom {
  margin-top: 10px;
  padding: 5px;
  width: 100%;
  height: 100%;
}

.postroom .postbox {
  padding: 1px;
  border-radius: 10px;
  width: 70%;
  margin: auto;
  border-top: 1px solid #459dac;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: white;
  padding: 10px;
}

.postroom .postbox .head {
  background: white;
  border-bottom: 2px solid #b8b8b8;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.postroom .postbox .head .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.postroom .postbox .head .info .userinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.postroom .postbox .head .info .userinfo img {
  margin: 5px 10px;
  width: 40px;
  border-radius: 50%;
}

.postroom .postbox .head .info .userinfo p {
  font-size: 19px;
  color: #3f3f3f;
}

.postroom .postbox .article p {
  padding: 10px;
  background: white;
  color: #414141;
  letter-spacing: 1px;
}

.postroom .postbox .img {
  width: 100%;
}

.postroom .postbox .img .imgbox {
  width: 100%;
}

.postroom .postbox .img .imgbox img {
  width: 100%;
}

.postroom .postbox .reactbox {
  padding: 5px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.postroom .postbox .reactbox a {
  text-decoration: none;
  width: 30%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}

.postroom .postbox .reactbox .react {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #4a4a4a;
}

.postroom .postbox .reactbox .react .maincomment svg {
  color: #008f00;
}

.postroom .postbox .reactbox .react p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  text-align: center;
}

.postroom .postbox .reactbox .react p svg {
  text-align: center;
  width: 100%;
  color: #003b6f;
}

.postroom .postbox .reactbox .react input {
  width: 50px;
  font-size: 17px;
  border: none;
  text-align: center;
}

.postroom .postbox .commentbox {
  display: none;
  border-top: 1px solid #787878;
  padding: 10px;
}

.postroom .postbox .commentbox .commenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin-bottom: 10px;
}

.postroom .postbox .commentbox .commenter img {
  margin: 0px 10px;
  width: 50px;
  border-radius: 50%;
}

.postroom .postbox .commentbox .commenter .reply {
  border-radius: 10px;
  padding: 5px;
  background-color: #d9f6ff;
}

.postroom .postbox .commentbox .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.postroom .postbox .commentbox .input img {
  width: 50px;
  border-radius: 50%;
  background: #000;
}

.postroom .postbox .commentbox .input form {
  text-align: center;
  width: 90%;
}

.postroom .postbox .commentbox .input form #comment {
  width: 80%;
  border: none;
  padding: 10px;
  font-size: 20px;
  border-radius: 20px;
  background: #eaeaea;
  height: 40px;
}

.postroom .postbox .commentbox .input form #submit {
  background: #a4cdff;
  border: none;
  font-size: 20px;
  height: 40px;
  border-radius: 10px;
  width: 15%;
}

@media screen and (max-width: 500px) {
  .postroom .postbox {
    width: 100%;
  }
}
/*# sourceMappingURL=profile.css.map */