/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4; /* Light neutral background */
  font-family: "Arial", sans-serif;
  color: #333; /* Dark text color */
}

/* Container for the content */
.container {
  text-align: center;
  padding: 15px;
  background-color: #fff;
  background-image: url('Rainbow_Repeat.png');
  background-repeat: no-repeat;
  background-attachment: local;
  background-position: center top;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 350px;
  width: 100%;
}

/* Profile picture styling */
.profile-picture {
  width: 250px;
  border-radius: 50%;
  margin-bottom: 20px;
}


/* Links section */
.links {
  display: flex;
  flex-direction: column;
}

/* Button styling */
.button {
  display: inline-block;
  margin: 10px auto;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  max-width: 90%;
  min-width: 75%;
}
.button img {
  height: 36px;
  vertical-align: middle;
}

.button.red {
  background-color: rgb(164, 0, 0);
}
.button.rng {
  background-color: rgb(236, 88, 0);
}
.button.ylw {
  background-color: rgb(255, 167, 0);
}
.button.grn {
  background-color: rgb(0, 102, 0);
}
.button.blu {
  background-color: rgb(0, 35, 135);
}
.button.prp {
  background-color: rgb(115, 79, 150);
}





/* Button hover effect */
.button:hover {
  background-color: #555;
}

/* Minimalist custom scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Thin scrollbar */
}

::-webkit-scrollbar-track {
  background: #f4f4f4; /* Matches body background */
}

::-webkit-scrollbar-thumb {
  background-color: #333; /* Dark color to match button styling */
  border-radius: 10px;
  border: 2px solid #f4f4f4; /* Create space around thumb for cleaner look */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker on hover to match button hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {

  h1 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.9rem;
  }

}
