header {
    background-color: rgba(180, 172, 172, 0.8);
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    cursor: default;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    font-family: Cambria;
    border-radius: 4px;
    padding: 10px;
}

.header-left h1 {
    font-size: 20px;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-right p {
    font-family: Georgia;
    margin: 0 10px 0 0;
    border-radius: 4px;
    padding: 15px;

}

.click:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.icon {
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

.plus {
    height: 30px;
    width: 30px;
}

.main-wrapper {
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 70px;
    height: 800px;
    background-color: rgb(255, 237, 210);
    box-sizing: border-box;
}

.comment-text {
    color: green;
    padding-left: 20px;

}

.comment {
    background-color: rgba(255, 255, 185, 0.5);
    padding: 10px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.comment-container {
    margin: 0 auto;
    padding: 0 20px;
}

.input {
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 35px;
}

.input input[type="text"] {
  width: 60%;
}

.input input[type="submit"] {
  padding: 5px 12px;
  border-radius: 20px;
  border-width: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}

.input input[type="submit"]:hover {
    background-color:rgb(224, 224, 224)
}