body {
    font-family: Arial, sans-serif;
    /* background-color: red; */
    background-image: url('https://wallpapercave.com/wp/wp2895287.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 20px;
    flex-direction: column;
    max-width: 700px;
    margin: auto;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 35px;
}

.header {
    width: 100%;
    background-color: #0a80f73d;
    color: white;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    box-shadow: 4px 4px 5px rgb(0, 0, 0);
}

.header img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.header h1 {
    margin: 0;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 48px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commentSection {
    width: 100%;
    background-color: transparent;
    border: 2px solid #ccc;
    border-radius: 15px;
    padding: 10px;
    margin-top: 20px;
    box-shadow: 20px 20px 50px rgb(251, 251, 251);
    height: 450px;
}

.person {
    width: 100%;
    padding: 16px;
    background-color: #ffffff99;
    border: 1px solid #878787;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.image {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: center;
}

.commentBox {
    display: flex;
    gap: 10px;
}

.commentBox input {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.commentBox input:focus {
    outline: none;
    border: 2px solid #007bff;
}

.commentBox button {
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.commentBox button:hover {
    background-color: #8ed0f8;
}

.comment {
    background-color: #00000078;
    margin-top: 5px;
    padding: 10px 10px 0px 10px;
    border-radius: 6px;
    width: 40%;

}

.comment h2 {
    font-size: 18px;
    margin-bottom: 5px;
    color: rgb(161, 146, 243);
    padding-bottom: 10px;
}

.comment h4 {
    font-size: 14px;
    margin-top: 10px;
    text-indent: 50px;
    color: white;
}

.comment h2,
.comment h4 {
    margin: 0;
    padding: 0;
}

.comment p {
    font-size: 12px;
    color: rgb(161, 146, 243);
    text-align: end;
    margin-top: 15px;
}

.deleteBtn {
    position: relative;
    top: 25px;
    display: none;
    background-color: red;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
}

.comment:hover .deleteBtn {
    display: inline-block;
}