@font-face {
    font-family: 'cool';
    src: url(cool.ttf);
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: seagreen; /* beige-gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  


  .container { /* Changes Size of Container at the center*/
    width: 100%;
    max-width: 500px;
  }
  


  .profile-card {
    background: rgba(48, 103, 84);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
  }
  

 .water {
  display: block;
  max-width: 100%;   /* scale down on small screens */
  height: auto;      /* keep aspect ratio */
  margin: 0 auto .2rem auto; /* centers it horizontally */
}
  .profile-top {
    margin-bottom: 1.5rem;
  }
  
  .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: .8rem;
  }
  
  .username {
    font-family: cool;
    font-size: 1.2rem;
    font-weight: 600;
  }
  

/* From Uiverse.io by Praashoo7 */ 
button {
    font-family: cool;
    outline: none;
    color: #000000;
    padding: 1em;
    padding-left: 3em;
    padding-right: 3em;
    border: 2px dashed rgba(242, 153, 141, 1);
    border-radius: 15px;
    background-color: rgba(163, 56, 87, 1);
    box-shadow: 0 0 0 4px #EADDCA, 2px 2px 4px 2px rgba(0, 0, 0, 0.5);
    transition: .1s ease-in-out, .4s color;
  }
  
  button:active {
    transform: translateX(0.1em) translateY(0.1em);
    box-shadow: 0 0 0 4px #EADDCA, 1.5px 1.5px 2.5px 1.5px rgba(0, 0, 0, 0.5);
  }


  .links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
  }
  
  .link-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    background: #fefcf3;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, background 0.2s;
  }
  
  .link-item i {
    font-size: 1.2rem;
    color: black;
  }
  
  .link-item:hover {
    transform: translateY(-2px);
    background: #fdf8e4;
  }
  
  .footer {
    margin-top: 2rem;
  }
  
  .cta {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 0.7rem 1.2rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    font-weight: 500;
  }
  
  .cta:hover {
    background: #f1f1f1;
  }
  
  .small-links {
    font-family: cool;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #000000;
  }
  
  .small-links a {
    color: #000000;
    text-decoration: none;
  }
  
  .small-links a:hover {
    text-decoration: underline;
  }
  
  


/*When button is clicked it doesn't show a color*/
  a {
    color: inherit; /* or set a specific color */
    text-decoration: none; /* optional if you want to remove underline */
  }
  
  a:visited {
    color: inherit; /* same as normal link */
  }
  
  a:hover {
    color: inherit; /* or choose a hover color */
  }
  
  a:active {
    color: inherit;
  }
