@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@keyframes fade-in {
	0% {border: 3px dotted transparent;}
	100% {border: 3px dotted purple;}
}

body {
  text-align: center;
  font-family: "Rubik", sans-serif;
  background-color: #1a101a;
	color: white;
}

h1 {
  color: #eeaaff;
	margin: 0;
  padding: 50px;
  font-size: 50px;
  border-radius: 25px;
	animation: fade-in 1.2s cubic-bezier(1,0,.7,1) forwards;
}

.box {
	font-size: 20px;
	border-left: 10px solid purple;
	margin: auto;
	width: 40%;
	padding: 20px;
	background-color: #bbbbbb11;
}

.br {
	margin: 20px;
}

.button {
	background-color: white;
	width: 75px;
	height: 75px;
	position: relative;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3px;
}

#buttons-container {
	display: flex;
	justify-content: center;
}