*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
}
@font-face {
    font-family: "burtons";
    src: url("../src/assets/Burtons.otf");
  }

  :root{
    --body_background:#fff6c3;
    --body_color:rgb(30,30,30);
    --nav_color:rgba(255, 251, 200, 0.589);
    --text_color:rgba(30, 30, 30, 0.788);
    --skillber_color:rgba(255, 244, 147, 0.664);
    --intro_color:#fff6c3;
  }

  [data-theme="dark"]{
    --body_background:rgb(30,30,30);;
    --body_color:#fff6c3;
    --nav_color:rgba(30, 30, 30, 0.473);;
    --text_color:#fff6c3;
    --skillber_color:rgb(50,50,50);
    --intro_color:#33ff55;
  }

  *{
    transition: all 0.2s ease-in-out;
  }

body{
    background:var(--body_background);
    color:var(--body_color);
    color:var(--nav_color);
    color:var(--text_color);
    color: var(--skillber_color);
    color:var(--intro_color);
}



html {
  --cursor-color:rgba(43, 255, 53, 0.774);
}
