:root {
  --hover-button-light: #0f1010;
  --hover-button-shadow: #000000;
  --hover-button-background: #000;
  --standard-text-color: #a7a7a7;
  --heading-color: #e0dcdc;
  --heading-size: 1.6rem;
  --cell-background-color: #262727;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.6;
}

html * {
  box-sizing: border-box;
}

body {
  background-image: url("../img/bg-min.jpg");
  color: var(--standard-text-color);
  margin: 0;
  padding: 0 0 2rem 0;
  height: 100%;
  font-family: roboto, sans-serif;
}

.content {
  z-index: 2;
  position: relative;
}

body:after {
  content: " ";
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.03;
  background-image: url("../img/texture.gif");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #8a8a8a;
}

/* GRID */
.grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

a {
  color: inherit;
}

h1 {
  font-size: var(--heading-size);
}

h2 {
  font-size: calc(var(--heading-size) * 0.9);
}
h3 {
  font-size: calc(var(--heading-size) * 0.7);
}

h1,
h2,
h3 {
  color: var(--heading-color);
}

h1 {
  font-size: 2.5rem;
  padding: 0.5rem 0;
  margin: 0;
}

h2 {
  padding: 0.3rem 0;
  margin: 0;
}

hr {
  height: 0;
  border: 1px solid #161616;
  border-bottom-color: #231f1f;
}

.mobile-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.external-links {
  font-size: 0.8rem;
}

.centered {
  width: 90%;
  margin: auto;
}

.site-head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 100%;
}

.site-logo {
  height: 50%;
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.card {
  background-color: #1e1e1e;
  box-shadow: 3px 4px 13px 2px rgba(9, 9, 9, 0.8);
  padding: 2rem 4rem;
  border-radius: 10px;
}

.ma-cell {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  margin: 2px 2px 8px 2px;
  background-color: var(--cell-background-color);
  font-size: 0.8rem;
  border: 1px solid black;
  border-radius: 5px;
  transition: background-color 0.2s ease-out, border-color 0.3s ease-in-out;
}

.ma-cell.active {
  border-color: red;
}

.ma-cell:hover {
  background-color: var(--hover-button-background);
}

.technology p {
  margin-bottom: 3rem;
}

.project {
  width: fit-content;
}

.current-project {
  pointer-events: none;
  font-weight: bold;
  color: #fff;
  padding: 1.2rem 2rem;
  display: inline-block;
  position: relative;
  border: 1px solid #8a8a8a;
  border-radius: 2px;
  margin: 2rem 0;
}

@media all and (min-width: 1200px) {
  .grid-wrapper {
    display: grid;
    grid-template-columns: 0.62fr 0.38fr;
    /*gap: 4rem;*/
  }

  .content {
    max-width: 1600px;
  }
}
