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

body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  width: 100%;
  padding: 14px 24px;
  border-bottom: 3px solid #FF0000;
  background: #ffffff;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #FF0000;
  letter-spacing: -0.5px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

h1 {
  font-size: 64px;
  font-weight: 700;
  color: #282828;
  letter-spacing: -1px;
}

main p {
  font-size: 18px;
  font-weight: 400;
  color: #606060;
}
