@import url("https://fonts.googleapis.com/css2?family=Tektur&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ecfdf5;
  --greentext-color: #10b981;
}

.dark-theme {
  --primary-color: #000106;
  --greentext-color: #10b981;
  --whitetext-color: #fff;
}

body {
  font-family: "Tektur", sans-serif;
  background: var(--primary-color);
  color: var(--whitetext-color);
  text-align: center;
  margin: 15vh auto;
}

button {
  font-family: "Tektur", sans-serif;
  width: 200px;
  height: 50px;
  margin-top: 30px;
  background: var(--greentext-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

button:hover {
  background-color: var(--whitetext-color);
  color: var(--greentext-color);
  border: 1px solid #10b981;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container i {
  cursor: pointer;
  color: #fff;
  background: #273549;
  font-size: 2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.text h1 {
  font-size: 3rem;
  margin-top: 20px;
  padding: 20px;
}

.text h3 {
  font-size: 1.5rem;
  padding: 10px;
}

.text span {
  color: var(--greentext-color);
}

.generetedpassword {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 50px;
}

.password {
  background-color: #273549;
  width: 220px;
  height: 50px;
  color: var(--greentext-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.password span {
  margin-left: 20px;
  width: 150px;
}

.password i {
  font-size: 0.8rem;
  width: 25px;
  height: 25px;
}

.password i:hover {
  background-color: var(--greentext-color);
}
