@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #100d38;
  color: white;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 45px;
  margin: 50px;
  font-weight: 900;
}

.traffic-lights {
  display: flex;
  flex-direction: column;
  background-color: #1e1b48;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  width: 70px;
  height: 180px;
  border-radius: 50px;
}

.light {
  background-color: #06032e8d;
  width: 40px;
  height: 40px;
  border-radius: 50px;
}
