/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap");
/* 
font-family: 'Josefin Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
*/
:root {
  /* lİGHT COLOR */
  --blue-color: #be3144;
  --dark-purple: #7752fe;
  --light-purple: #8e8ffa;
  --ice-color: #c2d9ff;

  /* Dark Color */
  --dark: #22092c;
  --Maroon: #872341;
  --tile-color: #be3144;
  --orange: #f05941;
}

body {
  background-color: #F3F3F3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
a,
a:hover {
  list-style-type: none;
  text-decoration: none;
  color: #fff;
}


.line {
  width: 100%;
  height: 1px;
  background-color: var(--Maroon);
  margin: 1rem 0;
  border-radius: 50%;
}
.tag {
  margin-top: 80px;
}

table {
  width: 40%;
  border-collapse: collapse;
  margin: 20px auto;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 8px;
  border: 2px solid #be3144;
  text-align: center;
}