/* global */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  font-family: "Roboto", "Poppins", sans-serif;
  font-size: inherit;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Poppins", sans-serif;
  font-size: inherit;
  color: #ffffff;
  margin: 0;
}

.light {
  --clr-bg: #ffffff;
  --clr-fg: #000000;
  --clr-bg-alt: #f5f5f5;
  --clr-fg-alt: #000000;
  --clr-primary: #000000;
  --shadow: rgba(43, 43, 43, 0.26) 0px 7px 20px 0px;
}

.dark {
  --clr-bg: #000000;
  --clr-fg: #ffffff;
  --clr-bg-alt: #1a1a1a;
  --clr-fg-alt: #ffffff;
  --clr-primary: #ffffff;
  --shadow: rgba(0, 0, 0, 0.26) 0px 7px 20px 0px,
    rgba(44, 43, 43, 0.06) 0px 0px 0px 1px;
}

::-moz-selection {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
}

::selection {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: normal;
  color: inherit;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
}

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

ul {
  list-style: none;
  list-style-type: none;
  text-align: center;
  align-items: center;
}

/*button and links*/
button {
  position: relative;
  background-color: #e12a2a;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  overflow: hidden;
}

button span {
  position: relative;
  z-index: 1; /* Ensure the text is above the pseudo-element */
  font-family: "Poppins", sans-serif;
  background-color: transparent;
}

button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(202, 44, 44);
  transition: width 0.9s ease;
  z-index: 0; /* Lower z-index to ensure it's below the text */
}

button:hover:before {
  width: 100%;
}

.links {
  color: var(--clr-primary);
  position: relative;
}

.links:hover {
  color: blueviolet;
}

.link_nav:hover {
  font-size: 1.2em;
}

.link_nav {
  transition: 0.2s all;
  color: var(--clr-fg);
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0.4em;
  align-items: center;
  font-weight: bold;
}

.header {
  height: 6em;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

main {
  max-width: 1100px;
  width: 100%;
  margin-top: 6em;
  margin-left: auto;
  margin-right: auto;
  font-family: "Poppins", sans-serif;
}

.ul_center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em;
  padding: 0;
}

.navli {
  margin-right: 3em;
  display: block;
}

.contact_us {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.tag {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.ip {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  padding: 0px 170px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.home-container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    151deg,
    rgba(0, 0, 0, 1) 50%,
    rgba(253, 29, 29, 1) 100%
  );
}

.logo img {
  height: 70px;
  width: 70px;
}

.logo {
  flex: 7%;
}

nav {
  flex: 93%;
}
