body {
    margin: 8px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 38px;
}

.leftside {
    display: flex;
    font-size: 20px;
}

.hometext {
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.nav-wrapper > .leftside > div {
    margin-right: 20px;
    font-size: 1.1em;
    font-family: 'Nunito', sans-serif;
}

.nav-link-wrapper {
    height: 27px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #17252a;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid #17252a;
}

.nav-link-wrapper a:hover {
    color:  #17252a;
}

.rightside {
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}

.social-media1 {
    position: absolute;
    left: 1620px;
    top: 48px;
}

.social-media2 {
    position: absolute;
    left: 1660px;
    top: 48px;
}

.bookmarkArrow {
    position: absolute;
    left: 1750px;
    top: 43px;
    
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
  }
  
  .wrapper {
    position: absolute;
    width: 90vmin;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
  .container {
    background-color: #feffff;
    padding: 50px 30px 80px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(10, 10, 10, 0.3);
    display: grid;
    grid-template-columns: 1fr;
  }
  textarea {
    width: 100%;
    border: none;
    resize: none;
    outline: none;
    font-size: 16px;
    line-height: 28px;
    color: #1a1a1d;
  }
  .count {
    background-color: #17252a;
    width: 80%;
    padding: 20px;
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(24, 12, 49, 0.4);
  }
  .count p {
    color: rgb(146, 140, 140);
  }
  .count h5 {
    color: #feffff;
    font-size: 32px;
  }