* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
oll, ul {
    list-style: none;
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
a {
    text-decoration: none;
    color: #333;
}
.container {
    padding: 15px;
}
.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.logo-text {
    display: block;
    text-align: center;
}
.items {
    max-width: 80%;
    margin: 30px auto;
}

.link-list {
    display: flex;
    border-radius: 48px;
    border: 1px solid #333;
    align-items: center;
    padding: 2px;
    transition: all 0.4s;
    gap: 10px;
    margin-bottom: 15px;
}
.link-list img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.link-list:hover {
    background: #333;
    color: #fff;
}
.hizmet {
    text-align: center;
    margin-bottom: 10px;
}
.hizmet p {
    font-size: 13px;
}

.social {
    text-align: center;
    margin: 30px 0;
}

.social a {
    display: inline-block;
    margin: 10px;
}