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

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

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-family: "Pacifico", sans-serif;
}

body {
  background-color: white;
}

.container {
  width: 100%;
  height: 100%;
}

.main {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: rgb(70, 10, 50);
  background-color: rgb(255, 245, 225);
}