@import url('/css/cards.css');

@font-face {
  font-family: 'RobotoMono';
  src: url('/fonts/RobotoMonoNerdFont-Regular.ttf') format('truetype');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

:root {
  --font-family: 'RobotoMono', sans-serif;
  --font-size: 12px;
  --line-height: 1.5;
  --background-color: #333;
  --text-color: #e2e2e2;
  --border-radius: 4px;}

*,html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1{
  font-size: 4em;
  margin-bottom: 0.5em;
  font-weight: bolder;
  
}
h2 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

body {
    --bg-color1: rgba(16, 16, 16);
    --bg-color2: rgba(29, 0, 38);
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: var(--line-height);
    background: linear-gradient(60deg, var(--bg-color1), var(--bg-color2));
    color: var(--text-color);
    position: relative;
    padding: 50px 50px;
    display: grid;
    grid-template-columns: 1184px 474px;
    grid-template-rows: auto;
    gap: 20px;
    justify-content: center;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/background.webp') no-repeat center center fixed;
  background-size: cover;
  opacity: 0.01;
}

