@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

html {
  background-color: #222428;
}

.text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #f1f4f9;
  margin-bottom: 4px;
}

.wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.logo {
  width: 90px;
  position: relative;
  z-index: 11;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 11;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-lines {
  position: absolute;
  top: 0;
  left: 0;
}

.line {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  left: 100px;
  width: 0.2px;
  background-color: rgba(165, 165, 165, 0.2);
}
