:root {
  --bgcolor: #1C1B22;
  --primcolor: #2B2A33;
  --texthovercolor: #555368;
  --textcolor: #9F8D77;
  --seccolor: #CEC4A9;
  --bordercolor: #3D3B51;
  --shadowcolor: #70554560;
}

html {
  scroll-behavior: smooth;
}

/*:root {
  --bgcolor: #272829;
  --primcolor: #61677A;
  --seccolor: #D8D9DA;
  --textcolor: #FFF6E0; 
  --shadowcolor: #2D2D2D;
}*/

body {
  background-color: var(--bgcolor);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial;
}

hr {
  background: var(--primcolor);
  border-width: 0px;
  height: 1px;
}

footer {
  margin-top: auto;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.footer-body {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--primcolor);
  text-align: center;
  justify-content: center;
}

.main-window {
  margin-left: 5%;
  margin-right: 5%;
  overflow: hidden;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.main-window a:hover {
  background: var(--seccolor);
  border-color: var(--textcolor);
}

.main-window a {
  text-decoration: none;
  color: var(--textcolor);
}

.hide-element {
  display: none;
}

.max-width {
  width: 100%;
}