/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #f5f5f5;

  /* Ortalamak için Flex */
  display: flex;
  justify-content: center; /* yatay ortala */
  align-items: center; /* dikey ortala */
  min-height: 100vh; /* ekran yüksekliği kadar */
  padding: 16px; /* mobil kenar boşluğu */
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* STYLING */

.container {
  max-width: 550px;
  width: 100%;
  padding: 0px 16px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* hafif gölge */
}

.title {
  padding: 19px 0px;
  border-bottom: 1px solid #eaeaea;
  font-size: 18px;
}

.activity-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  padding: 14px 0px;
  border-bottom: 1px solid #eaeaea;
}

h3 {
  color: #212121;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
}

p {
  color: #807e7e;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

@media (min-width: 768px) {
  .container {
    padding: 0px 24px;
  }
}
