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

body {
  display: flex;
  justify-content: center;
  align-items: left;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  background-color: #303c46;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  width: 100%;
  max-width: 700px;
  padding: 15px;
  box-sizing: border-box;
  background-color: #303c46; /* #34404b; */
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

h1,h2 {
  font-family: 'Roboto Slab', serif;
  letter-spacing: 0.2rem;
  color: #c3cbce;
}

p {
  font-size: 1rem;
  color: #c3cbce;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.1rem;
  word-spacing: 0.3rem;
  font-family: 'Roboto', sans-serif;
}
