@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 0;
  background-color: #f7f7f7;
  overflow-x: hidden;
  overflow-y: scroll;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2vmax;
  padding: 1vmax;
  background-color: #efefef;
  color: #777;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vmax;
  padding: 1vmax;
}

a {
  color: #999;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-family: "Tangerine", cursive;
  font-size: 5vmax;
}
