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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}

#main {
  padding: 40px;
  width: 100%;
  height: 100%;
  background-image: url(https://images.unsplash.com/photo-1617335692487-caadd35a7f20?q=80&w=2058&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  text-align: center;
}
h1 {
  font-family: "McLaren", sans-serif;
  color: black;
  font-size: 80px;
}
#mac {
  color: rgb(216, 116, 116);
}
button {
  font-size: 20px;
  font-family: "McLaren", sans-serif;
  padding: 5px 10px;
  background-color: #1261cf;
  color: white;
  border: none;
  border-radius: 5px;
}
button:hover {
  background-color: #085fd8;
  transform: scale(1.05);
  cursor: pointer;
}
