:root {
  --header-font: Stretch Pro;
  --general-font: SF Pro;

  --foreground: #ebdbb2;
  --secondary-fg: #BDAE93;
  --tertiary-fg: #A89984;

  --background: #131313;
  --secondary-bg: #1d2021;
  --tertiary-bg: #32302f;
}

* {
  font-family: var(--header-font);
  color: var(--foreground)
}

body {
  background-color: var(--background);
}

.laTitul {
  font-size: 15px;
}

.container {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;

  background-color: var(--secondary-bg);
  padding: 32px;
  margin: 5px;
  gap: 15px;
}

.folder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-color: #282828;
  color: var(--secondary-fg);
  height: 128px;
  width: 128px;
  font-size: calc(128px * 0.095);
  word-wrap: break-word;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;

  transition: 0.15s width ease, 
    0.015s background-color ease, 
    0.15s box-shadow ease,
    0.03s text-shadow ease-out;
}

.folder-link {
  flex: 1;
  display: flex;
}

.folder:hover {
  background-color: var(--tertiary-bg);
  color: var(--fg);
  text-shadow: 0 3px 3px var(--tertiary-fg);
  box-shadow: 0 0 120px 40px var(--secondary-bg);
  z-index: 2;
}
