.splash-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 22px 10px 22px;
    margin-top: 20px;
}

.brand-logo {
    display: block;
    text-decoration: none;
    margin-bottom: 5px;
}

.header-logo {
    width: 160px;
    height: auto;
    display: block;
}

.brand {
    font-size: 35px;
    font-weight: bold;
    text-decoration: none;
    color: inherit;
}

.author {
    color: var(--gray);
    font-size: 16px;
}


[data-screen="home"].screen.splash {
  position: relative;
}


[data-screen="home"] .splash-center {
  align-items: flex-end;
  justify-content: center;
}


.hello-bot-container {
  position: absolute;
  bottom: 250px;
  left: 40%;
  z-index: 5;
  pointer-events: none;
}

.hello-bot {
  width: 220px;
  height: auto;
  display: block;
}

@media (max-width: 400px) {
  .hello-bot {
    width: 180px;
  }
  .header-logo {
    width: 120px;
}
}
  
.socials {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
  
.socials .btn {
  width: 60px;
}

.socials i {
  font-size: 25px;
}