/* font */
@import url("https://fonts.googleapis.com/css2?family=Salsa&display=swap"); 

@import "projects/project-cards.css";
@import "projects/profile.css";
@import "general/carousel/carousel.css";
@import "general/header/header.css";
@import "general/footer/footer.css";
@import "general/scrollbar.css";
@import "general/dropdown.css";
@import "general/underline-hover.css";
@import "general/button.css";

:root {
  --standout-color-cyan: #47cbd2;
  --standout-color-green: #58b550;
  --supporting-background-color: #3b3b3b;
  --main-background-color: #212121;
  --text-color: #e0e0e0;
  --text-color-muted: #a5a5a5;

  --header-height: 100px;
  --border-radius: 10px;
}

* {
  font-family: inherit;
}

main {
    flex: 1;
}

html {
  scrollbar-gutter: stable;
}
html,
body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  background: var(--main-background-color);
  color: var(--text-color);
  font-family: "Salsa", cursive;
}

a {
  text-decoration: none;
}
p {
  font-size: 18px;
  margin: 0 0 10x;
  line-height: 1.3;
}
h1 {
  font-size: 2.2rem;
  text-align: center;
  color: var(--text-color);
  margin: 0;
}
h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  color: var(--text-color-muted);
  margin-top: 0;
}