@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}


.bg {
  background: url("../img/bg.jpg") no-repeat center center/cover;
  position: absolute;
  top: -30px;
  left: -30px;
  width: calc(100vw + 60px);
  height: calc(100vh + 60px);
  z-index: -1;
}

h1{
  color: #F6F7D7;
}

.site{
  color:#FF165D
}

.constraction.true{
  color:#FF9A00;
  text-decoration: underline;
  transition: all 0.5s ease-out;
}

.constraction.false
{
  color:#3EC1D3;
  text-decoration: line-through;
  transition: all 0.5s ease-out;
}