/* General page setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: #be80ff;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

header {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.logo {
  max-width: 180px;
  height: auto;
}

/* Center symbol + text */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.symbol {
  width: 300px;
  max-width: 70vw;
  height: auto;
}

.cok-text {
  position: absolute;
  width: 60%;
  max-width: 250px;
  height: auto;
}

/* Footer */
footer {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.follow {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .symbol {
    width: 220px;
  }
  .cok-text {
    max-width: 180px;
  }
  .logo {
    max-width: 140px;
  }
}
