* {
  box-sizing: border-box;
  margin: 0;
  padding:0;

}

body {
  font-family: 'Ubuntu';
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 0 20px;
  
}

ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

li {
  list-style: none;

}

a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
div {
  display:grid;
  justify-content: center;
  align-items: center;
  margin:5rem auto;
}

button {
  padding: 1rem;
  margin-top: 20px;
  color: white;
  background-color: #1c1c1c;
  font-size: 16px;
}