.header{
    background-color: bisque;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.urls {
    display: flex;
    gap: 20px;
}

.urls a {
    text-decoration: none;
    color: brown;
    transition: color 0.5s ease;
    font-size: larger;
}
.urls a:hover{
    color: red;
}
a{
    color: #ffe8b3;
}
a:hover{
    color:#fef3dc;
}

.logo a{
    color: chocolate;
    transition: color 0.5s ease;
    text-decoration: none;
    font-size: x-large;
}
a{
    text-decoration: none;
}
.logo a:hover{
    color: #975b18;
}
.form-login, .form-register , #newNews-form{
    border-radius: 10px;
    background-color: #975b18;
    display: flex;
    justify-content: center;
    margin-right: 30%;
    margin-left: 30%;
    margin-top: 8%;
}
.item {
    margin-top:10px;

}
.button{
    display: flex;
    justify-content: center;
    color: #d58010;
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
}
.error-info{
    display: flex;
    justify-content: center;
}
ul{
    display: flex;
    justify-content: space-evenly;
    background-color: #d58010;
}
ul h3{
    background-color: white;
}
/*#newNews-form{*/
/*    border-radius: 10px;*/
/*    background-color: #d58010;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-right: 30%;*/
/*    margin-left: 30%;*/
/*    margin-top: 8%;*/
/*}*/
.underText{
     display: flex;
     justify-content: center;
}
.content {
    width: 100%;
    height: 300px;
    padding: 10px;
    word-break: break-word;
    resize: none;
    box-sizing: border-box;
    overflow-y: auto;
}
.title {

    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    max-lines: 10;
}
.doCenter{
    display: flex;
    justify-content: center;
    text-decoration-style: solid;
}
.blueUrl{
    color: blue;
    text-decoration: none;
}
.blueUrl:hover{
    color: blueviolet;
}
/*#profile-page{*/
/*    border-radius: 10px;*/
/*    background-color: #975b18;*/
/*    display: flex;*/

/*    margin-right: 30%;*/
/*    margin-left: 30%;*/
/*    margin-top: 8%;*/
/*}*/
.orange-element{
    background-color: #d58010;
    border: black;
    border-radius: 5px;
    margin: 10px;
}
.doLeft{
    display: flex;
    justify-content: left;
}