* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: rgb(23, 180, 120);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.sosyal-medya {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 40px;
    flex: 1;
}

.sosyal-medya .linkler {
    display: flex;
    column-gap: 20px;
}

.sosyal-medya .linkler a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: auto;
    color: white;
    font-size: 45px;
}

.sosyal-medya h2{
    cursor: pointer;
    color: white;
}
.sosyal-medya h2:hover{
    color: red;
}

footer{
    width: 100vw;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: white;
    color: rgb(23, 180, 120);
    font-weight: 500;
}

.sosyal-medya .linkler a#github:hover {
    background-color: #6e5494;
}

.sosyal-medya .linkler a#linkedin:hover {
    background-color: #0a66c2;
}

.sosyal-medya .linkler a#steam:hover {
    background-color: #171a21;
}

.sosyal-medya .linkler a#lensfrens:hover {
    background-color: #e139c8;
}

@media screen and (max-width: 380px) {
    .sosyal-medya {
        row-gap: 92px;
    }
    
    .linkler {
        flex-wrap: wrap;
        column-gap: 0;
        row-gap: 32px;
        justify-content: space-around;
    }

    .linkler div {
        flex-basis: 45%;
    }
}