* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}
:root {
  --main-font-color: #dbdbdb;
  --margin-separation: 1rem;
  --font-size-primary: 2.5rem;
  --font-size-secudary: 1.5rem;
  --font-size-third: 1rem;
  --color-default: #e25d10;
  --main-background: linear-gradient(
    45deg,
    rgb(46, 45, 56) 0%,
    rgba(79, 78, 71, 1) 35%,
    rgb(93, 106, 109) 100%
  );

  --bg: #ECF6FE;
  --bg-secondary: #8b9dc1;
  --text: #0f1e3a;
  --text-secondary: #f1f1f1;
  --btn-primary: #eaac35;
}

[data-theme="dark"] {
  --bg: #142552;
  --bg-secondary: #1f346b;
  --text: #f1f1f1;
  --text-secondary: #000000;
  --btn-primary: #eaac35;
}

body {
  background: var(--bg);
  background-attachment: fixed;
}

a {
  text-decoration: none;
}
p {
  margin: 0;
}

.modal {
  --bs-modal-width: 600px;
}

.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
