@import url("https://fonts.googleapis.com/css2?family=Ruda:wght@400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");

:root {
  --dark-blue: #071a3b;
  --pink: #e11955;
  --light-pink: #fa447B;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

hr {
  width: 90%;
  margin: auto;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
  font-family: "Ruda", sans-serif;
  font-size: 1.5rem;
  font-style: normal;

  color: var(--dark-blue);
  
  text-align: left;
}

section {
  padding: 10%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
