/* boşlukları sıfırladım */

*{
    padding: 0px;
    margin: 0px;
    font-family: "Poppins";
    color: #242f51;
}

/* p taglerinin bütün satırı kaplamaması için */
p{
    display: inline;
}

a{
    text-decoration: none;
    margin: auto;
}

/* logo yazısı boyutu ve stili */
.logo p{
    font-size: 30pt;
    font-weight: bold;
}

.sari{
    color: #fcae61;
}

/* liste stil kaldırıldı */
.menu{
    list-style: none;
}

.header-navigation-bar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

/* top menü ve buton hizalandı */
.menu-buton{
    align-items: center;
    display: flex;
}

/* liste elemanları arası boşluk verildi */
.menu li{
    display: inline;
    margin: 0px 15px;
}

.menu li a:hover{
    color: #fcae61;
}

/* linklerin stil özelliği kaldırıldı. */
.menu li a {
    text-decoration: none;
}

.standart-button button{
    height: 60px;
    width: 170px;
    background-color: #2500f9; 
    color: white;
    font-size: 14pt;
    font-family: "Poppins";
    font-weight: bold;
    border: solid;
    border-style: hidden;
    border-radius: 30px;
    pointer-events: none;
}

.top-content{
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.main-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 375px;
}

.main-text .top{
    display: flex;
    text-align: center;
    height: 35px;
    width: 100%;
    background-color: #e2eaed;
    border: 1px solid transparent;
    border-radius: 20px;
}

/* turuncu daire oluşturulacak */
.main-text .top .daire{
    display: inline-block;
    width: 35px;
    height: 100%;
    border-radius:50%;
    background-color:orange;
}

.main-text .top p{
    margin-left: 5px;
    margin-top: 5px;
}

.main-text .top,
.main-text .center{
    margin-bottom: 30px;
}

.buttons{
    display: flex;
    justify-content: space-around;
}

.companies{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.companies div{
    margin-bottom: 30px;
}

.companies div:nth-child(2) img{
    margin-right: 20px;
}