body,html{
    background-color: #000;
}


.fixed-menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Ortalamak için */
    width: 150px; /* Başlangıç genişliği */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    transition: width 0.5s ease; /* Genişliğin animasyonu */
}

.logo {
    width: 100px;
    height: 50px;
    padding: 5px;
}
.logo img{
    width: 90px;
}

.hamburger {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #ffffff;
    font-size: 34px;
    color:  #ce1f60;;
}

.hamburger:hover{
    color: #1f55a5;
}

.middle-div {
    width: 0;
    height: 50px;
    background-color: #fff;
    transition: width 0.5s ease; /* Orta div için genişleme animasyonu */
    overflow: hidden;
}
.middle-div ul{
    padding: 0px;
    margin: 0px;
}
.middle-div ul li{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: inline-block;
}
.middle-div ul li a{
    display: block;
    height: 50px;
    padding: 14px 10px;
    text-decoration: none;
    font-size: 15px;
    color: #d82065;
    font-weight: 500;
}
.middle-div ul li a:hover{}

.circles {
    pointer-events: none;
    position: fixed;
    --dim: 100vmin;
    width: var(--dim);
    height: var(--dim);
    top: 0;
    left: 35%;
}

.demo-3 .circles {
    --dim: 156vmin;
}

.circles__text {
    text-transform: uppercase;
    transform-origin: 700px 700px;
    will-change: transform, opacity;
}

.circles__text--1 {
    font-size: 110px;
    font-family: var(--font-circle-1);
    font-weight: var(--font-weight-circle-1);
    fill: var(--color-text-circle-1);
}

.circles__text--2 {
    font-size: 120px;
    font-family: var(--font-circle-2);
    font-weight: var(--font-weight-circle-2);
    fill: var(--color-text-circle-2);
}

.circles__text--3 {
    font-size: 60px;
    font-family: var(--font-circle-3);
    font-weight: var(--font-weight-circle-3);
    fill: var(--color-text-circle-3);
}

.circles__text--4 {
    font-size: 40px;
    font-family: var(--font-circle-4);
    font-weight: var(--font-weight-circle-4);
    fill: var(--color-text-circle-4);
}

img {
    cursor: pointer;
}

