:root {
    --primary: #1db954;
    --neutral: #1a1a1a;
    --dark: #0e0e0e;
    --light: #ffffff;
    --bg: #0e0e0e;
    --text: #ffffff;
    --text-muted: #bbbbbb;
    --radius: 8px;
    --max-width: 1200px;
  }
  
  * {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    margin: 0;
    /* font-family: 'Segoe UI', sans-serif; */
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
  main{
    min-height: 80vh;
    display: flex;
    flex-direction: column;
  }
  a{
      text-decoration: none;
  }

.loginButton{
    border: solid 1px var(--primary);
    border-radius: var(--radius);
    color: white;
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
