@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

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

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Fira Code", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background: url("/assets/bg1.svg") no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 70%;
}
.tagline {
  width: 70%;
  margin-top: 10px;
  font-size: 1.75rem;
  display: flex;
  flex-direction: row;
}
.tagline .tagline-spacer {
  width: 130px;
}
.contact {
  margin-top: 15px;
  text-align: center;
}
.info {
  margin-top: 15px;
  width: 70%;
  text-align: center;
}