@charset "utf-8";
/* CSS Document */

/* Renk ve Yazı Referansları:
#220122 - Koyu Mürdüm
#7c1f77 - Koyu Pembe
#ffb280 - Kavuniçi
#f3e6e3 - Çok Açık Pembe
#d8cfc4 - Lila 
#c6bfb6 - Lıla (Gölge için)
#B1A79B - Lıla (bir tık koyusu)
#978B7A - Lıla (koyusu)
#eec     - Açık Bej
font-family: 'Segoe UI', sans-serif;

 background: radial-gradient(circle,rgba(34, 1, 34, 1) 0%, rgba(124, 31, 119, 1) 47%, rgba(255, 178, 128, 1) 100%) 
 background: radial-gradient(circle,rgba(34, 1, 34, 1) 0%, rgba(124, 31, 119, 0) 47%, rgba(255, 178, 128, 1) 100%) 
 #eec - Açık Bej (Hex kısa yazım: #eeccbb anlamına gelir)
 -----
 font-family: 'Segoe UI', sans-serif; 
*/


/* ------------------------ */
/* GENEL RESET VE TEMELLER */
/* ------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* ----------------- */
/* LİNK STİLLERİ     */
/* ----------------- */

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #7c1f77;
  text-decoration: underline;
}

a:active,
a:focus {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
  outline: none;
}

