/*
  styles.css - To handle styling and design of krythos.com (temporary landing page).
  Written by and property of Krythos/Troy.
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
  background-color: #101010;
  font-family: 'Helvetica Neue', sans-serif;
  overflow: hidden;
  user-select: none;
  cursor: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.logo-img {
  width: 20vw;
  max-width: 350px;
  animation: heartbeat 3s infinite;
  user-select: none;
  pointer-events: none;
  transition: width 0.3s ease;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 30vw;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 40vw;
  }
}

.brand-text {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  z-index: 5;
  transition: font-size 0.3s ease, bottom 0.3s ease;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .brand-text {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .brand-text {
    font-size: 18px;
  }
}