@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;900&display=swap');

body {
  background-color: #18181b;
  font-family: 'Raleway', sans-serif;
  color: #e4e4e7;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

a {
  color: #10b981;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

a:hover {
  color: #f97316;
}

::selection {
  background-color: #3b82f6;
  color: #ffffff;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #1f2937;
  padding: 10px 0;
}

.footer a {
  margin: 0 15px;
}

.footer img {
  width: 32px;
  height: 32px;
  transition: transform 0.25s ease-in-out;
}

.footer img:hover {
  transform: scale(1.1);
}

iframe {
  border-radius: 15px;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.main {
  margin-right: 20px;
}

.chat {
  float: right;
  width: 300px;
  height: 580px;
  margin-top: 20px;
  background-color: #222;
  border-radius: 10px;
  padding: 6px;
  z-index: 1;
}

.chat #chatango {
  width: 100%;
  height: 100%;
}

.logo {
  margin-top: 20px;
}

.dancing-gif {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  animation: dance 3s ease-in-out infinite;
}

@keyframes dance {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  25% { transform: translateY(-55%) rotate(-5deg); }
  50% { transform: translateY(-45%) rotate(5deg); }
  75% { transform: translateY(-50%) rotate(-5deg); }
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }
  
  .chat {
    float: none;
    margin-top: 20px;
  }
}