@import "base.css";

  /*other color variables using these*/
/*general stuff*/
:root {
  --BgCol: var(--Tel1);
  --TxtCol1: var(--Red1);
  --TxtCol2: var(--Wht1);
  --Col1: var(--Blu1);
  --Col2: var(--Grn1);
  --Col3: var(--Yel1);
  --Col4: var(--Red1);
}

body {
  background-color:var(--BgCol);
  font-family: "Outfit"; 
  color: var(--TxtCol1)
  }
h1 {
  font-size: 48px;
  }
h2 {
  font-size: 32px;
  }
h3 {
  font-size: 28px;
  }
h4 {
  font-size: 26px;
  }
h5 {
  font-size: 24px;
  }
h6 {
  font-size: 20px;
  }
p {
  font-size: 18px;
  color: var(--TxtCol2)
  }
/*buttons*/
button {
  border: hidden;
  color: var(--TxtCol2);
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  margin: 4px 6px;
  cursor: pointer;
  background-color: var(--Col1);
  font-family:"Outfit";
  border-radius:5px;
  transition-duration: 0.5s;
  }
button:hover{
  background-color: var(--Col2);
  transform: scalex(0.9) scaley(0.85) rotate(2deg);
  box-shadow: 0px 0px 20px var(--Col4);
  }
button:active {
  transition-duration: 0.1s;
  background:var(--Col3);
  transform: scalex(0.8) scaley(0.7) rotate(1deg)
  }
/*other stuff*/
hr {
      border-width: 2px;
      border-style: solid;
      border-color:var(--TxtCol2);
      border-radius: 2px
      }
details > summary {
  list-style-type: disc;
  }

details[open] > summary {
  list-style-type: circle;
  }
details > summary {
  cursor:pointer
  }
/*figure out mult themes*/