@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

:root{
  --main-brand-color: #297AE3;
  --primary-color: #15171C;
  --secondary-color: #232933;
  --light-secondary-color: #2E3744;
  --text-color: #ffffff;
  --secondary-text-color: #B3B4B6;
  --bg-lin4: linear-gradient(90deg, #52515b, #bfbfbf, #52515b);
  --link-color: #d08a1a;
  --link-color-focus: #a9f447;
}
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
}
body{
  min-height: 100vh;
  background-color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: var(--text-color);
}
a:active, a:link, a:visited { color: var(--link-color-focus);}
a:focus, a:visited { color: var(--link-color-focus); }

h1{
  font-size: 100px;
  font-weight: 300;
  line-height: 70%;
}
h3{
  font-size: 16px;
  font-weight: 200;
  line-height: 140%;
}
.subheading{
  margin-top: 25px;
  color: var(--secondary-text-color);
}

footer {
  width: 99.4%;
  margin-top: 50px;
  margin-bottom: 0px;
  background: var(--secondary-color);
  color: var(--text-color);
  font-size: 0.6em;
  font-weight: 200;
  padding: 4px;
}