/* Afonso Benedito 54937 */
/* Afonso Teles da Silva 54945 */
/* Tomás Ndlate 54937 */



.CommentsButton{
    position: absolute;
    font-family: burbank, sans-serif;
    top: 200px;
    float: right;
    left:25%;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 5px #363636;
    text-align: center;
    width: 23%;
    padding: 0;
    background: #c06a42;
    border: 4px solid rgb(116, 46, 6);
    font-size: 10px;
    cursor: pointer;
}

.YourCommentButton {
    position: absolute;
    font-family: burbank, sans-serif;
    top: 200px;
    left: 50%;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 5px #363636;
    text-align: center;
    width: 25%;
    padding: 0;
    background: #c06a42;
    border: none;
    font-size: 10px;
    cursor: pointer;
}

.CommentsBox{
    top: 300px;
    left: 15%;
    width: 70%;
    position: absolute;
    height: 450px;
    background: rgba(192, 106, 66, 0.85);
    visibility: visible;
    border-radius: 15px;
    font-family: burbank, sans-serif;
}

.CommentsBox h1{
    text-align: center;
    color: white;
    font-size: 20px;
    top: 0px;
}

.CommentsBox Table{
    top: 50px;
    color: white;
    border: 5px solid rgb(116, 46, 6);
    position: absolute;
    left: 5%;
    width: 90%;
    
}

tr {
    border: 5px solid;
    border-color: rgb(116, 46, 6);
    height: 60px;
}

th {
    border: 5px solid;
    border-color: rgb(116, 46, 6);
}

.Comment {
    text-align: left;
    width: 70%;
}

.Name {
    text-align: center;
    width: 15%;
}

.Date {
    text-align: center;
    width: 15%;
}



.YourCommentBox{
    text-align: center;
    top: 300px;
    left: 15%;
    width: 70%;
    position: absolute;
    height: 450px;
    background: rgba(192, 106, 66, 0.85);
    visibility: hidden;
    border-radius: 15px;
    font-family: burbank, sans-serif;
}

.YourCommentBox h1 {
    color: white;
    font-size: 20px;
}

textarea {
    background-color: peachpuff;
    width: 80%;
    height: 300px;
    font-size: 25px;
    color: white;
}

.SubmitComment {
    top: 600px;
    height: 50px;
    background-color:rgb(150, 76, 42);
    color: white;
    border-radius: 15px;
    border: tomato;
    width: 30%;
    left: 35%;
    cursor: pointer;
}

.SentComment {
    position: absolute;
    top: 10px;
    width: 30%;
    left: 35%;
    visibility: hidden;
}

@media(max-width:790px){
    .CommentsBox{
        left:1%;
        width: 98%;
    }

    .YourCommentBox{
        left: 1%;
        width: 98%;
    }

    .CommentsButton{
        left: 5%;
        width: 40%;
    }

    .YourCommentButton {
        right: 5%;
        width: 40%;
    }

}