:root {
  --bg: #0b1529;
  --bgSoft: #222737;
  --text: #dee4eb;
  --textSoft: #cbd2d9;
}

* {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", sans-serif;
}

body.light {
  --bg: #dee4eb;
  --text: #0b1529;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1368px;
  padding-left: 50px;
  padding-right: 50px;
  margin: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* not found start   */
.notFound {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 20px;
}
.notFoundBtn {
  border: 1px solid gray;
  border-radius: 5px;
  padding: 4px;
}
/* not found end   */

.tagItemListLink {
  padding: 10px;
  border: 1px solid #384160;
  font-size: 20px;
  border-radius: 5px;
}

/* responsive */

/* for extra extra large device "tv " */
@media (max-width: 1536px) {
  .container {
    max-width: 1368px;
  }
}
/* for extra largest device "sm tv" */
@media (max-width: 1368px) {
  .container {
    max-width: 1280px;
  }
}
/* for largest device "desktop" */
@media (max-width: 1280px) {
  .container {
    max-width: 1024px;
  }
}
/* for large device "laptop"*/
@media (max-width: 1024px) {
  .container {
    max-width: 768px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* for medium device " tablet" */
@media (max-width: 768px) {
  .container {
    max-width: 640px;
  }

  .tagItemListLink {
    padding: 6px;
    border: 1px solid #384160;
    font-size: 16px;
    border-radius: 5px;
  }
}
/* for small device "phone" */
@media (max-width: 640px) {
  .container {
    max-width: 475px;
  }
}
