* {
  margin: 0;
  padding: 0;
}


:root {
  --white: #E0E1E9;
  --black: #373F51;
  --yellow: #F7F052;
  --blue: #008DD5;
  --red: #F56476;
}



body {
  /* 
  You can insert a background image.
  Keep a background color! */


  background-image: url("src/bg.jpg");
  background-position: top left;
  background-size: cover;



  display: flex;
  justify-content: center;

  font-family: 'Poppins', 'Helvetica', 'Arial', 'sans-serif';
  font-size: 16px;
  font-weight: 200;
  color: var(--black);
}

#linktree {
  background: white;
  border-radius: 50px 50px 50px 50px;
  max-width: 500px;
  padding: 2em 3em 3em 3em;
  margin: 5px 0px 5px 0px;
  text-align: center;
}

.profile-picture {
  padding: 400;
  margin: 0;
  display: inline-block;
}

.profile-picture img {

  overflow: hidden;
  border: 10px solid var(--black);
  border-radius: 100%;
  height: 200px;
  width: 200px;
  display: block;

}

.profile {
  font-family: 'Nunito', 'Poppins', 'Helvetica', 'Arial', 'sans-serif';
  font-weight: 600;
  padding: 0.2em 2em .2em 2em;
  line-height: 1.3em;
  font-size: 1.5em;
}

.profile .bio {
  font-family: 'Poppins', 'Helvetica', 'Arial', 'sans-serif';
  font-size: 14px;
  font-style: italic;
  font-weight: 400;

}



.links .button {
  display: block;
  background: var(--black);
  border: 2px solid var(--black);
  color: white;

  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.1em;
  text-decoration: none;

  margin: 20px 0px 0px 0px;
  border-radius: 50px;
  padding: 15px 0px 15px 0px;
  width: 100%;
}

.links .button:hover {
  border: 2px solid var(--black);
  background: none;
  color: var(--black);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.socials {
  padding: .5em 2em 1em 2em;
  text-align: center;
}

.socials a {
  color: var(--black);
  transition: 0.3s ease-in-out;
}

.socials a:hover {
  color: var(--red);
  text-decoration: none;
}

/* Mobile */

@media only screen and (max-width: 796px) {
  body {
    background-image: none !important;
    background-color: white;
  }

  #linktree {
    margin-top: 0px;
    border-radius: 0px;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    /* Koyu arka plan rengi */
    color: #ffffff;
    /* Açık metin rengi */
  }

  .social-button {
    /* Karanlık modda uygulanacak stil */
    filter: none;
    /* Karanlık modda da rengin değişmesini önlemek için */
  }


  .profile-picture img {
    border: 10px solid #ffffff;
    /* Beyaz çerçeve */
  }
}


.social-buttons {
  padding: 1em 2em 0.5em 2em;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-button {
  filter: none;
  width: 48px;
  height: 48px;
  background-size: cover;
  display: block;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.social-button:hover {
  transform: scale(1.1);
}

.gsm {
  background-image: url('src/gsm.png');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #007BFF;
}

.wp {
  background-image: url('src/wp.png');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #25D366;
}

.mail {
  background-image: url('src/mail.png');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #4682B4;
}

.ig {
  background-image: url('src/ig.png');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e1306c;
}