body {
  margin: 0px;
  padding: 0px;
  background-color: rgb(193, 220, 255);
}

.bg {
  display: flex;
  justify-content: center;
}

.bg-img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header {
  background-color: rgb(223, 237, 255);
  height: 50px;
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: 0px;
  padding: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px
}

.left-h {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
}

.title, .title:visited, .title:hover, .title:active {
  font-size: 30px;
  font-weight: bold;
  font-family: "Parisienne", cursive;
  color: #0e1464;
  text-decoration: none;
}

.middle-h {
  display: flex;
  align-items: center;
}

.one, .one:visited {
  background-color: #159fb8;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border: none;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.one:hover {
  opacity: 0.8;
  text-decoration: none;
  color: white;
}

.one:active {
  opacity: 0.5;
  text-decoration: none;
  color: white;
}

.two, .two:visited {
  background-color: #387dd8;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border: none;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.two:hover {
  opacity: 0.8;
  text-decoration: none;
  color: white;
}

.two:active {
  opacity: 0.5;
  text-decoration: none;
  color: white;
}

.three, .three:visited {
  background-color: #1541a0;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border: none;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.three:hover {
  opacity: 0.8;
  text-decoration: none;
  color: white;
}

.three:active {
  opacity: 0.5;
  text-decoration: none;
  color: white;
}

.four, .four:visited {
  background-color: #0e1464;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border: none;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.four:hover {
  opacity: 0.8;
  text-decoration: none;
  color: white;
}

.four:active {
  opacity: 0.5;
  text-decoration: none;
  color: white;
}

.right-h {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 300px;
}

.search {
  flex: 1;
  height: 33px;
  width: 0;
  padding-left: 10px;
  font-size: 16px;
  border: 3px solid rgb(116, 149, 180);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
}

.search:focus {
  outline: none;
  border: 3px solid rgb(82, 96, 150);
}

.search-bttn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.search-bttn {
  height: 41px;
  width: 60px;
  background-color: rgb(193, 220, 255);
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-left-width: 1px;
  border-right-width: 3px;
  border-style: solid;
  border-color: rgb(116, 149, 180);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-left: -1px;
  margin-right: 10px;
}

.search-bttn .tooltip {
  position: absolute;
  background-color: gray;
  color: white;
  padding: 4px;
  border-radius: 2px;
  font-size: 12px;
  bottom: -30px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  white-space: nowrap;
}

.search-bttn:hover .tooltip {
  opacity: 1;
}

.search-icon {
  font-size: 20px;
  color: #1541a0;
}


.posts-box {
  position: absolute;
  top: 30vh;
  right: 10%;
  width: 65%;
}

@media (max-width: 1100px) {
  .posts-box {
    position: absolute;
    top: 40vh;
    width: 50%;
  }
}

@media (min-width: 1101px) {
  .posts-box {
    position: absolute;
    top: 30vh;
    width: 65%;
  }
}

.profile {
  position: absolute;
  top: 30vh;
  left: 10%;
  display: inline-block;
  width: 250px;
  margin: 10px;
  border-radius: 15px;
  background-color: rgb(223, 237, 255);
  box-shadow: 5px 5px 10px rgba(14, 29, 116, 0.2);
}

@media (max-width: 1100px) {
  .profile {
  position: absolute;
  top: 40vh;
  left: 10%;
  }
}

@media (min-width: 1101px) {
  .profile {
  position: absolute;
  top: 30vh;
  left: 10%;
  }
}

.photo {
  width: 220px;
  height: 200px;
  margin: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.name {
  font-size: 24px;
  font-weight: bold;
  color: #0e1464;
  padding-left: 10px;
  margin-top: -5px;
  margin-bottom: 0px;
}

.friends {
  font-size: 18px;
  color: #0e146496;
  padding-left: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.bttn-contain {
  text-align: center;
  margin-bottom: 10px;
}


.posts {
  display: inline-block;
  height: 535px;
  overflow: scroll;
  margin: 10px;
  border-radius: 5px;
}

.post {
  margin: 10px 10px 20px 10px;
  padding: 30px;
  background-color: rgb(223, 237, 255);
  border-radius: 15px;
}

.short {
  display: flex;
  justify-content: space-between;
}

.post-title, .post-title:visited, .post-title:hover, .post-title:active {
  font-size: 36px;
  font-weight: bold;
  color: #0e1464;
  text-decoration: none;
}

.post-date {
  font-size: 20px;
  color: #0e146496;
}

.post-blurb {
  font-size: 24px;
  color: #1541a0;
}

.expand, .expand:visited, .expand:hover, .expand:active {
  display: flex;
  align-items: center;
  background-color: rgb(193, 220, 255);
  text-align: center;
  padding: 10px;
  margin-left: 20px;
  border-radius: 15px;
  font-size: 36px;
  font-weight: bolder;
  color: #1541a0;
  text-decoration: none;
  cursor: pointer;
}

.a-center {
  display: flex;
  justify-content: center;
}

.article {
  position: relative;
  bottom: 30vh;
  width: 75vw;
  margin: 0px;
  border-radius: 5px;
}

.article-content {
  margin: 10px 10px 20px 10px;
  padding: 30px;
  background-color: rgb(223, 237, 255);
  border-radius: 15px;
}

.article-title {
  font-size: 36px;
  font-weight: bold;
  color: #0e1464;
  text-align: center;
}

.article-date {
  font-size: 20px;
  color: #0e146496;
}

.article-subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #0e1464;
}

.article-body {
  font-size: 24px;
  color: #1541a0;
  text-indent: 35px;
  margin: 10px 0px 10px 0px;
  --fa-display: inline-block;
  --fa-li-margin: 0.2em;
}

@media (max-width: 1200px) {
  .article-body {
    --fa-li-margin: 1em;
  }
}

@media (min-width: 1201px) {
  .article-body {
    --fa-li-margin: 0.2em;
  }
}

.article-img {
  max-width: 90%;
  text-align: center;
  margin-inline: auto;
  flex-flow: row wrap;
}

.a-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  margin: 1em;
  border-radius: 15px;
}

.text-link:link, .text-link:visited {
  color: #1541a0;
  text-decoration: none;
}

.text-link:hover, .text-link:active {
  color: #0e1464;
  text-decoration: underline;
}

.back-bttn:link, .back-bttn:visited {
  color: #0e1464;
  font-size: 24px;
  border: solid;
  padding: 1vh;
  margin: 1vh;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.back-bttn:hover {
  opacity: 0.7;
}

.back-bttn:active {
  opacity: 0.5;
}


.comment-contain {
    position: relative;
    top: -20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgb(223, 237, 255);
    padding: 20px;
    font-family: monospace;
    width: 50vw;
    border-radius: 15px;
}

.head {
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #0e1464;
}

.number-of {
  font-size: 15px;
  color: #1541a0;
}

.text {
    margin: 10px 0;
    font-family: sans-serif;
    font-size: 18px;
    color: #0e1464;
}

.commentbox {
    display: flex;
    padding: 10px;
}

.commentbox > img {
    width: 10%;
    height: 10%;
    border-radius: 5%;
    margin-right: 20px;
    object-fit: cover;
    object-position: center;
}

.content {
    width: 100%;
    font-size: 20px;
    margin-top: -2.5vh;
    color: #0e1464;
}

.user {
  font-size: 18px;
  border-radius: 8px;
  color: #0e1464;
  border: 3px solid #0e1464;
  border-width: 3px;
  padding: 1vh 1vh 1vh 1vh;
  margin-top: -3vh;
  background-color: rgb(223, 237, 255);
}

.user:focus {
  outline: none;
  border: 3px solid #1541a0;
}

.commentinput > input {
    border: none;
    padding: 10px;
    padding-left: 0;
    outline: none;
    border-bottom: 3px solid #1541a0;
    margin-bottom: 10px;
    width: 95%;
    color: #0e1464;
    background-color: rgb(223, 237, 255);
    font-size: 18px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #387dd8;
}

.buttons > button {
    padding: 5px 10px;
    background: rgb(193, 220, 255);
    color: #387dd8;
    text-transform: uppercase;
    font-size: 22px;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: 0.3s;
}

.buttons > .abled {
    background: #159fb8;
    color: white;
    cursor: pointer;
}

.notify {
    margin: 10px 0px 0px 0px;
    display: flex;
    align-items: center;
}

.notify > input {
    margin: 5px;
    border: 2px solid #808080;
}

.parents {
    font-family: Arial, sans-serif;
    display: flex;
    margin-bottom: 30px;
}

.parents h1 {
    font-size: 20px;
    color: #0e1464;
}

.parents p {
    margin: 10px 0;
    font-size: 18px;
    color: #1541a0;
}

.parents > img {
    width: 10%;
    height: 10%;
    border-radius: 5%;
    margin-right: 20px;
    object-fit: cover;
    object-position: center;
}

.engagements {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 1vh;
    color: #0e1464;
}

.engagements i {
  cursor: pointer;
  color: #0e1464;
}

.date {
  color: #1541a0;
}