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

* {
  box-sizing: border-box;
}

body {
  background-color: antiquewhite;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

h1 {
  text-align: center;
}

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.links a {
  background-color: coral;
  display: inline-block;
  width: 150px;
  padding: 1rem;

  min-height: 100px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.links a:hover {
  background-color: orange;
}
