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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  height: 100vh;
  max-width:100%;
  padding:30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

h1 {
  font-size: 100px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

p {
  font-size: 24px;
  color: #444;
}

a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}