* {
  box-sizing: border-box;
  font-family: 'Roboto Mono', monospace;
  margin: auto;
}

body {
  background-color: #363535;
  color: #fff;;
}


.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 1048px;
  padding: 24px;
}

.logo {
  width: 256px;
  height: 256px;
  background-image: url('./assets/logo.svg');
  background-size: cover;
  background-position: center;
  margin-bottom: 48px;
}

h1 {
  font-size: 32px;
  line-height: 48px;
  color: #64CFCC;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

p {
  font-size: 32px;
  text-align: center;
  line-height: 48px;
}



@media screen and (max-width: 600px) {

  .logo {
    width: 192px;
    height: 192px;
  }
 
  p, h1 { font-size: 16px; line-height: 26px; margin-bottom: 6px; }
  
}
