*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    overflow-x: hidden;
    width: 100vw;
    background-color: #0d0e0d;

}

header{
    top: 0;
    display: flex;
    width: 100vw;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    position: fixed;
    opacity: 0.8;
    color: white;
    border-bottom: 2px solid gray;
    z-index: 1000;
}

.accsign{
    margin-right: 100px;
    display: flex;
    align-items: center;
}

.puser{
    margin-right: 20px;
    font-size: 20px;
    text-decoration: none;
    color: beige;
    cursor: pointer;
}

.userimg{
    width: 80px;
    height: 80px;
}

.header1{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.chosenOne{
    border-bottom: 4px solid aqua;
}

.lihead{
    list-style: none;
    margin-left: 60px;
    font-size: 25px;
    padding: 10px;
    transition: 0.2s;
}

.lihead:hover{
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.ul1{
    display: flex;
    color: gray;
    margin-right: 300px;
}

.name1{
    margin-top: 10px;
    font-size: 40px;
}

.graya{
    color: gray;
}

a{
    text-decoration: none;
}

.firsta{
    color: white;
}

.logoimg{
    width: 60px;
    margin-right: 40px;
    height: 80px;
    margin-left: 40px;
}

.img2{
    width: 98.8vw;
    height: 1200px;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


footer{
    background-color: #18181b;
    border-top: 2px solid gray;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerinf{
    display: flex;
}

.li1{
    color: gray;
    list-style: none;
    margin-top: 20px;
    font-size: 20px;
}

.li2:hover{
    color: aqua;
    cursor: pointer;
}

.footerinf{
    padding: 40px;
    border-bottom: 1px solid gray;
}

.fa-trophy{
    color: aqua;
    font-size: 80px;
}

.firstcont{
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conth{
    color: white;
    font-size: 60px;
    margin-top: 30px;
}

.contp{
    color: gray;
    text-align: center;
    margin-top: 30px;
    font-size: 30px;
    margin-bottom: 60px;
}

.commentwrite{
    background-color: #18181b;
    border: 1px solid gray;
    border-radius: 7px;
    padding: 30px;
}

.label1{
    margin-top:60px;
    font-size: 14px;
    margin-bottom: 10px;
}

.input1{
    margin-top: 10px;
    background-color: #27272a;
    border: 1px solid gray;
    width: 800px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    caret-color: white;
    color: white;
}



.commenth1{
    font-size: 45px;
}

.textareadiv {
    position: relative;
    width: 800px;
  }
  
  textarea {
    width: 100%;
    height: 120px;
    padding: 20px;
    padding-bottom: 30px;
    background: linear-gradient(145deg, #2b2b2f, #1f1f23);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    outline: none;
    resize: none;
    caret-color: white;
  }
  
  textarea::placeholder {
    color: gray;
  }

  textarea:focus {
    border: 1px solid rgba(255,255,255,0.25);
  }
  
  .counter{
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 14px;
    color: gray;
  }

  .commentsec{
    display: flex;
    flex-direction: column;
    width: 1100px;
  }


  .hcount{
    color: white;
    margin-bottom: 100px;
    margin-left: 100px;
  }

.buttoncont{
    display: flex;
    justify-content: center;
    align-items: center;
    

}
.opt{
    background-color: #27272a;
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    border: 0;
    color: white;
    margin-right: 30px;
}

.noacc{
    color: gray;
    margin-bottom: 30px;
    
}

.opt:hover{
    cursor: pointer;
}

.commcont{
    display: flex;
    flex-direction: column;
}

.newcom{
    padding: 20px;
    background-color: #27272a;
    margin-bottom: 30px;
    width: 1000px;
    border-radius: 12px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    margin-left: 80px;
}

.comnamep{
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
}

.comdate{
    color: gray;
    font-size: 12px;
    margin-bottom: 30px;
}

.comtextp{
    color: white;
}

table, tbody, thead, tr, th, td{
    padding: 30px 100px;
    border: 2px solid gray;
    border-collapse: collapse;
    color: white;
}

table{
    margin-top: 50px;
    margin-bottom: 20px;
}

a{
    text-decoration: none;
    color: white;
}


@keyframes transition {
    from {
        opacity: 0;
        transform: translateY(-20px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);    
    }
}

main{
    animation: transition 1s ease-out;
}

footer{
    animation: transition 1s ease-out;
}