body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
  margin: 0;
  background: #f7f7f7;
  color: #222;
}

header {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
header h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
}

header span {
  font-size: 16px;
  color: #555;
}

.tagline {
  max-width: 600px;
  margin: 20px auto;
  font-size: 14px;
  color: #666;
  
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-img {
  width: 300px;
  height: auto;
  border-radius: 10px;
}

.hero-profile {
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
}


.bio, .articles, .social {
  background: white;
  margin: 20px auto;
  padding: 20px;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.bio h2, .articles h2, .social h2 {
  color: #444;
}

.articles ul {
  list-style: none;
  padding: 0;
}

.articles li {
  margin-bottom: 10px;
}

.articles a {
  color: #0066cc;
  text-decoration: none;
}

.articles a:hover {
  text-decoration: underline;
}

.social img {
  width: 70px;
  margin-right: 30px;
}
.contact {
  background: #f2f2f2;
  margin: 20px auto;
  padding: 20px;
  max-width: 900px;
  border-radius: 10px;
  text-align: center;
  color: #333;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 22px;
  }

  header span {
    font-size: 16px;
  }

  .tagline {
    font-size: 13px;
    padding: 0 10px;
  }

  .hero-profile {
    width: 90%;
  }

  .social img {
    width: 50px;
    margin: 15px;
  }

  .contact {
    font-size: 14px;
  }
}

..btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #0066cc;
  color: white; /* Yazı rengi burada tanımlı */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 20px;
}


.btn:hover {
  background-color: #004d99;
}


.site-header {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}

.site-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.site-header span {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 20px;
}

.tagline {
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
  color: #555;
  
  
}


