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

html,
body {
  font-family: 'Roboto', sans-serif;
  /* color: #000; */
}

body {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  color: white;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: dodgerblue; */
  border: 1px solid white;
}

.box>h1 {
  font-size: 3rem;
  padding: 25px 50px;
}


a {
  text-decoration: none;
  color: #787878;
}

header {
  /* background-color: red; */

  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 20px 50px;
}

header a h2 {
  font-size: 2rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  padding: 5px 10px;
  margin-left: 10px;
  font-weight: 500;
}

nav a:hover {
  color: #333333;
}