*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Verdana, Arial, sans-serif;
}
body{
    background-color:rgb(214, 188, 155);
}
.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.container header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.container .header:before{
content:"BEŞİKTAŞ";
position: absolute;
top: 60%;
left: 45%;
color: rgb(83, 12, 12);
font-weight: bold;
font-size: 90px;
z-index: -1;
}
.orta-baslik{
    color: gray;
    font: 25px;
    cursor: pointer;
}
.container .row{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.container .col-2{
    flex-basis: 50%;
    min-width: 300px;
}
h1{
    color: black;
    font-size: 55px;
    line-height: 55px;
    font-weight: bolder;
    letter-spacing: 2px;
    margin: 25px 0;
}
p{
    color: rgb(83, 12, 12);
    font-size: 15px;
    line-height: 25px;
}
.buton{
    color: #fff;
    display: inline-block;
    margin: top 45px;
    padding: 8px 20px;
    text-decoration: none;
    background-color: rgb(36, 35, 35);
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
}
.buton:hover{
    background-color: rgb(0, 0, 0);

}
.col-2 .ring img{
    width: 100%;
    max-width:600px;

}
.ring-circle{
    padding-left: 130px;
    padding-top: 60px;
}
.ring{
    position: relative;
    width: 400px;
    height: 400px;
    background: transparent;
    border: 3px solid white;
    border-radius: 50%;
    z-index: -1;
    box-shadow: rgb(59, 50, 50)
}
.ring::before{
    content: "";
    position: absolute;
    border-radius: 50%;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid rgb(83, 12, 12)  ;
    border-right: 3px solid rgb(83, 12, 12) ;
    z-index: -1;
    /* animation-name: returncircle;
    animation-timing-function:10sn;
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
    animation: returncircle-1 10sn linear infinite;
}
.col-2 .ring .circle{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 4px;
    z-index: -1;
    background:transparent ;
    transform-origin:left;
    animation: animatecircle-1 10sn linear infinite;
}
.circle::before{
    content:"" ;
    position: absolute;
    top: -6px;
    right: -9px;
    width: 16px;
    height: 16px;
    background-color:rgb(83, 12, 12) ;
    z-index: -1;
    border-radius: 50%;
    box-shadow: 0 0 20px rgb(83, 12, 12);
}
.ring-2{
    position: absolute;
    top: 5%;
    left: 47%;
    width: 500px;
    height: 500px;
    background: transparent;
    border: 3px solid white;
    border-radius: 50%;
}
.ring-2::before{
    content:"" ;
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid white;
   border-bottom: 3px solid rgb(83, 12, 12);
   border-left: 3px solid rgb(83, 12, 12);
   border-radius: 50%;
   animation: animatecircle-2 10s linear infinite;
}
.circle-2{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: return-2 10s linear infinite;
}
.circle-2::before{
    content: "";
    position: absoulte;
    top: -6px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: rgb(83, 12, 12);
    border-radius: 50%;
    box-shadow: 0 0 20px rgb(83, 12, 12);
}
@keyframes returncircle-1 {
    0%{
        transform:rotate(0deg)
    }
    100%{
        transform:rotate(360deg)
    }
}

@keyframes animatecircle-1 {
    0%{
        transform:rotate(45deg)
    }
    100%{
        transform:rotate(405deg)
    }
}
@keyframes returncircle-2 {
    0%{
        transform:rotate(0deg)
    }
    100%{
        transform:rotate(-360deg)
    }
}

@keyframes animatecircle-2 {
    0%{
        transform:rotate(-45deg)
    }
    100%{
        transform:rotate(-405deg)
    }
}