@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
*{
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
	background: url('./background.png');
	background-repeat: no-repeat;
	background-size: cover;
}

h1 {
	font-size: 48px;
	font-weight: 900;
	color: rgba(255,255,255,1);
}