@import url(https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap);

/* You can add global styles to this file, and also import other style files */
html {
  font-family: "Lato", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
.light-theme {
  --background-color: rgb(250, 250, 250);
  --text-color: #1a1a1a;
  --box-color: #fff;
  --button-color: #fff;
  /* header */
  --background-header-color: rgb(255, 255, 255);
  --box-shadow-header-color: #888888;
  /* Box shadow of button register, search and cards of the countries */
  --bs-group-color: rgba(136, 136, 136, 0.4);
  --background-search-color: rgb(255, 255, 255);
  /*  country details */
  --border-color: rgb(24, 24, 24);
  --country-detail__subtitle-color: rgb(27, 27, 27);
}
.dark-theme {
  --background-color: #222a32;
  --text-color: #f5f5f5;
  --box-color: #2b2b2b;
  --button-color: #1a1a1a;
  /* header */
  --background-header-color: #2B3945;
  --box-shadow-header-color: #232323;
  /* Box shadow of button register, search and cards of the countries */
  --bs-group-color: rgba(22, 22, 22, 0.4);
  --background-search-color: #2B3945;
  /*  country details */
  --border-color: rgb(235, 235, 235);
  --country-detail__subtitle-color: rgb(221, 221, 221);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--background-color);
  transition: all 0.3s ease-in-out;
}
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body strong,
body b,
body i {
  color: var(--text-color);
}
.toggle {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 2px;
  border-radius: 9px;
  color: var(--text-color);
  font-weight: bold;
  transition: all 0.1s ease;
}

/*# sourceMappingURL=styles.css.map*/