/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set body to occupy full height and center content */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c9d5e8;
  font-family: Arial, sans-serif;
}

/* Main container for the logo and links */
.container {
  text-align: center;
  perspective: 1000px;
}

/* Logo styling */
.logo img {
  max-width: 512px;
  border-radius: 50%;
  height: auto;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.2);
}

/* Links container styling */
.links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Circle styling for links */
.circle {
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  background-color: #131313;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: none;
}

.circle:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.6), 0 2px 4px -2px rgb(0 0 0 / 0.6);
}

/* Icon styling */
.circle i {
  font-size: 2.5rem;
  color: #c9d5e8;
}

.circle:hover i {
  color: #496e92;
}

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
  .logo img {
    max-width: 256px;
  }
  .circle {
    width: 50px;
    height: 50px;
  }
  .circle i {
    font-size: 1.5rem;
  }
}
