@import './theme/font.css';
@import './theme/variables.css';
@import './css/header.css';

* {
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
}

/* Default Elements - Styles */
header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid var(--border-color);
}

/* Base Classes */
.container {
  max-width: 1200px;
  width: 1200px;
  margin: 0 auto;
}

/* Shared Classes For Elements */
.nav-logo h2 {
  font-size: 18pt;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-logo h2 > span {
  margin-right: 4px;
}

section.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.section > h2 {
  font-size: 21pt;
  font-weight: 600;
}

/* Shared Button Classes */
.outline-button {
  outline: none;
  border: none;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 10.25pt;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.12s ease-in-out;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
}

.outline-button:hover {
  background-color: var(--bg-color-100);
}

.outline-button:active {
  background-color: var(--bg-color-200);
}