@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: rgb(168, 168, 168) !important;
}

.main {
    display: flex;
    justify-content: center;
}

.comment-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    background-color: rgb(230, 230, 230);
    width: 700px;
    padding: 30px;
    border: 2px solid rgb(190, 190, 190);
    border-radius: 10px;
}

.write-comment {
    width: 600px;
}

.view-comment-button, .hide-comment-button, .reply-button, .edit-button {
    margin-top: 10px;
    font-size: 14px;
    background: none;
    border: none;
    color: rgb(0, 0, 200);
    text-decoration: underline;
    cursor: pointer;
}

.reply-button, .edit-button {
    color: rgb(90, 90, 90);
    margin-right: 2px;
}

.comment {
    background-color: rgb(240, 240, 240);
    border: 2px solid rgb(220, 220, 220);
    border-radius: 10px;
    padding: 20px;
    width: 600px;
    margin-top: 10px;
    font-size: 15px;
}

.comment-option {
    margin: -20px 0px 0px 5px;
}

.reply {
    border-left: 2px solid rgb(190, 190, 190);
    padding-left: 20px;
    margin: 10px 0 0 20px;
    font-size: 14px;
}

.like input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  

svg {
    position: relative;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    transition: all 0.3s;
    fill: #666;
    margin-right: 5px;
}

svg:hover {
    transform: scale(1.1) rotate(-10deg);
}

.like input:checked ~ svg {
    fill: rgb(0, 0, 255);
}
  