.header {
    display: flex;
}

a {
    color: #000;
}

a:visited {
    color: #000;
}

.text-right {
    position: fixed;
    top: 25%;
}

.social-icons {
    padding: 0;
    list-style: none;
}

.social-icons li {
    text-align: center;
    text-decoration: none;
}

.social-icons li a {
    text-decoration: none;
}

.logo {
    width: 200px;
    height: 80px;
}

.menu {
    background-color: #E74C3C;
    height: 80px;
    width: 100%;
}

.menu ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 50px;
    list-style-type: none;
}

.menu li {
    float: left;
    position: relative;
    top: 10px;
    margin-left: 15px;
    border-radius: 10px;
}

.menu li:hover {
    background-color: #EC7063;
}


/*
.menu ul li a:active {}
*/

.menu ul li a {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
}


/*  acılır menü özellikleri */

.menu ul li ul {
    display: none;
    position: absolute;
    right: -88px;
    background: #EC7063;
    width: 200px
}

.menu ul li ul li {
    display: flex;
    height: 50px;
}


/* menü içi a etiketi hover

.menu ul li:hover>a {}
*/


/* menü alt menü a etiketi  */

.menu ul li ul li a {
    text-align: left
}


/* menü alt menü  a etiketi hover*/

.menu ul li ul li a:hover {
    background: #E74C3C;
    height: max-content;
    margin: auto;
}

.menu ul li:hover ul {
    display: flex;
    border-radius: 10px;
    align-items: flex-start;
    height: max-content;
}

.menu ul li:hover ul li {
    width: 150px;
}

.content {
    display: flex;
}

.content-right {
    background-color: #FDFEFE;
    height: 800px;
    padding-right: 20px;
}

.content-left {
    background-color: #FDFEFE;
    height: 800px;
    overflow: hidden;
}

.footer {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    background-color: #E74C3C;
    height: max-content;
}

.footer img {
    border-radius: 50px;
}

.footer ul {
    font-size: large;
    list-style: none;
}

.footer ul li img {
    border-radius: 0px;
    width: 50px;
    height: 50px;
}

.content-item {
    margin-top: 50px;
    margin-left: 80px;
    height: 200px;
    border: 2px solid rgb(226, 73, 73);
    border-radius: 5px;
    background-color: white;
    display: flex;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: black;
}

.content-item-img {
    margin-left: 20px;
    margin-top: 10px;
    width: 200px;
    height: 180px;
}

.content-item-category {
    margin-left: 20px;
}

.content-item-title {
    align-self: flex-start;
    max-height: 120px;
    margin-left: 20px;
    margin-top: 30px;
    text-decoration: none;
    width: 500px;
}

.content-item-author-link {
    text-decoration: none;
    top: 275px;
    margin-left: 20px;
    align-self: flex-end;
}

body {
    color: black;
    font-family: sans-serif;
    font-size: large;
}

.duyurular {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin-top: 20px;
    list-style: none;
}

.duyurular ul {
    padding-inline-start: 0px;
}

.duyurular ul li {
    text-align: center;
    list-style: none;
    background-color: lightblue;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    width: 380px;
    border-radius: 40px;
    height: 100px;
}

.slider {
    height: 300px;
    width: 400px;
    margin-top: 20px;
    list-style: none;
}

.video-cap {
    width: 310px;
    height: 220px;
    margin-top: 20px;
    margin-left: 45px;
}

.pages {
    margin: auto;
    display: flex;
}

.pages ul {
    margin: auto;
    display: flex;
    list-style: none;
}

.pages ul li {
    margin: 2px;
    text-align: center;
    font-size: x-large;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-right: 2px;
    border: 1px solid black;
    background-color: #E74C3C;
}

.pages ul li a {
    text-decoration: none;
    color: white;
}

#button {
    display: inline-block;
    /* background-color: #FF9800;*/
    background-color: #F1C40F;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    margin: 30px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s;
    z-index: 1000;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}