@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* 
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
}

body{
    background-color: #0F1422;
    display: flex;
    min-width: 100vw;
    min-height: 100vh;
    justify-content: center;
}

h1 {
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 6em;
    font-weight: 600;
    transform: skewX(-10deg);
    color: #fafafa;
}

span {
    display: flex;
    justify-content: center;
    color: #2B43EC;
}