@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import "./variables.css";
@import "./header.css";
@import "./stack.css";
@import "./projects.css";
@import "./timeline.css";

body,
p,
h1,
h2,
h3,
a,
ul,
li,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: var(--text-size);
  font-weight: 400;
  text-decoration: none;
  list-style: none;
}

* {
  box-sizing: border-box;
  color: var(--text)
}

body {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  background: var(--bg-dark);
  color: var(--text);
  font-size: var(--text-size);
  width: 100%;
}


main {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  text-align: center;
}

section {
  margin-bottom: 3rem;
}

#me {
  margin-bottom: 2rem;
}

#about p {
  line-height: 1.5;
  margin-bottom: 1.3rem;
}

section h3 {
  color: var(--text-muted);
  font-weight: 600;
}


.button-secondary {
  display: flex;
  place-items: center;
  padding: 0.5rem 1rem;
  background: hsl(0, 0%, 80%);
  color: hsl(0, 0%, 10%);
  font-weight: 500;
  border: none;
  border-radius: 6px;
  height: 1.8rem;
}

#typing-cursor {
  animation: blink 1s infinite;
  display: inline-block;
  width: 8px;
  height: 18px;
  background: hsl(0, 0%, 65%);
  margin-left: 0.5rem;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}