:root {
  --mainColor: #eaeaea;
  --secondaryColor: #fff;

  --borderColor: #c1c1c1;
  --borderColorSkills: #24292e;

  --mainText: black;
  --secondaryText: #4b5156;

  --themeDotBorder: #24292e;

  --previewBackground: #e5d3b3;
  --previewShadow: #f0ead6;

  --buttonColor: black;
  --prevNextbuttonColor: black;
  --transition: 0.5s ease;
}

/* Reset */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.15),
      transparent 30%
    ),
    var(--background);

  color: var(--primary-text);

  font-family: "Roboto Mono", monospace;
}

body * {
  transition: var(--transition);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-text);
}

p,
li,
span {
  color: var(--secondary-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: 2.2rem;
}

/* Links */

a {
  color: var(--accent);

  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

/* Sections */

.s1,
.s2 {
  min-height: 100vh;

  padding: 80px 8%;

  border-bottom: 1px solid var(--border);
}

/* Cards */

.card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  backdrop-filter: blur(15px);
}

/* Buttons */

button {
  cursor: pointer;
}

.container {
  max-width: 1200px;

  margin: auto;
}

.status {
  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--secondary-text);
}

.status-dot {
  width: 10px;

  height: 10px;

  background: #22c55e;

  border-radius: 50%;

  box-shadow: 0 0 10px #22c55e;
}
