@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url("bg.jpg");
    background-size: cover;
}



.container {
    width: 80%;
    margin: auto;
}

/*! header start */

header {
    height: 100px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

header nav .logo a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    column-gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color .25s ease;
}

nav ul li a:hover {
    color: #0ba2c0;
}

nav .menu {
    display: flex;
    align-items: center;
    column-gap: 48px;
}

nav .menu .menu-button {
    color: #0ba2c0;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 56px;
    transition: all .25s ease;
}

nav .menu .menu-button:hover {
    background-color: #0ba2c0;
    color: white;
}


/* Genel ayarlar */
.social-media {
  display: flex;
  justify-content: center; /* Ekranda ortalanacak */
  align-items: center;
  height: 100vh; /* Sayfanın tamamına yayılacak şekilde */
}

.social-media ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px; /* İkonlar arasındaki mesafe */
}

.social-media ul li {
  display: inline-block;
}

.social-media ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* Büyütülen ikon boyutu */
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-media ul li a:hover {
  background-color: #0077b5; /* Hover durumunda mavi arka plan */
  transform: scale(1.2); /* Hover durumunda büyüme efekti */
}

.social-media ul li a i {
  font-size: 2rem; /* Büyütülmüş ikon boyutu */
  color: #333; /* Varsayılan ikon rengi */
  transition: color 0.3s ease;
}

.social-media ul li a:hover i {
  color: #fff; /* Hover durumunda ikon rengi beyaz */
}

  