*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
}
.text-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 10%;
}
h1{
    font-size: 150px;
    color:white;
    font-family: sans-serif;
    text-align: center;
}

@media (max-width: 750px) {
  h1{
    font-size: 45px;
  }
}