/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url(https://media.discordapp.net/attachments/537312135047413761/1458604932482469970/445_Oct_8_2025_OxN_Stacel_Cover_blurred.jpg?ex=69603f33&is=695eedb3&hm=b3f21dffc9774a2bd0567bb131f470abe09440d47a0f07a8c50ea09f53dfe986&=&format=webp&width=1284&height=1284);
  background: cover center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: white;
  font-family: Monospace;
  }
  
header {
    padding: 2rem 2rem 4rem
}
/* ID's -- - --- -- --- -- --- ---- -- --- --- --- */
#page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background-color: #3851dc79;
  max-width: 65%;
  border-radius: 50px;
}

#grid-container { 
  display: grid;
    gap: 5px;
    grid-template-columns: 150px 1fr 1fr;
    grid-template-rows: 25px, 150px, 1fr 1fr;
    max-width: 750px;
    grid-template-areas:
    "social-links social-links social-links"
    "icon name name"
    "quick-info bio-card bio-card";
}

#profile-icon {
    border-radius: 25px;
    background-image: url(https://cdn.bsky.app/img/avatar/plain/did:plc:z3h4cujs44v6eha7fyrihwe5/bafkreiafyuibyus73la6hoctopxmwbnxso6ogo5rd6wvxrln3dyg3eveo4@jpeg);
    background-size: 150px;
    min-height: 150px;
    max-height: 150px;
    min-width: 150px;
    max-width: 150px;
}

#social_icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Classes -- -- -- ----- -- --- -- -- --- -- -- - */
.grid-item {
  text-align: center;
  background-color: #3761ff;
  border-radius: 20px;
  border: solid;
}

.text-accent {
  color: #3761ff;
}

.links {
  color: white;
}

.icon-button {
  padding: auto;
  font-size: 2em;
  width: auto;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: 0.5s;
  border-radius: 25%;
}

.social-button {
 background-color: #75a0ff;
  border: none;
  color: rgb(255, 255, 255);
  font-size:large;
  font-family: monospace;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
  transition: 0.5s;
  min-width: fit-content;
}
.social-button:hover {
    color: #3761ff;
}