:root{
  --background:			#101114;
  --background-transp:	#10111425;
  --primary-color:		#1c1d20;
  --secondary-color:	#4a4d57;
  --secondary-transp:	#4a4d5750;
  --accent-color:		#00ffc4;
  --text-color:			#f9f9f9;
  --border-radius:		10px;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  color: var(--text-color);
  box-sizing: border-box;
}
body{
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.wrapper{
  width: min(90vw,1600px);
  /*width: 100%;
  max-width: 1600px;*/
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header{
  margin-top: 0.25rem;
  margin-left: -5px;
  width: calc(100% + 10px);
  height: 5rem;
  position: fixed;
  left: 0;
  top: 0;
  padding: 0.5rem 2rem;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  /*border-bottom: 1px solid var(--accent-color);*/
  box-shadow: -1px -1px 5px var(--text-color) inset,
      			1px 1px 5px var(--primary-color)inset;
  .wrapper{
    flex-direction: row;
    gap: 1rem;
  }
}
section{
  margin: 1rem;
  margin-top: -5px;
  height: calc(100vh + 10px);
  height: calc(100svh + 10px);
  .wrapper{
    padding: 1rem;
    padding-top: 7.25rem;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--secondary-transp);
    box-shadow: -1px -1px 5px var(--text-color),
      			1px 1px 5px var(--primary-color);
  }
}

h1{
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  img{
    height: 4rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: -1px -1px 5px var(--text-color),
      			1px 1px 5px var(--primary-color);
    background-color: var(--background);
  }
}
h2{ margin-bottom: 1rem; }
a{
  text-decoration: none;
  color: var(--text-color);
}
nav{
  flex: 1;
  display: flex;
  gap: 1rem;
}
#main-nav{
  justify-content: flex-end;
  a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 2rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    background-color: var(--background-transp);
    color: var(--accent-color);
    text-align: center;
    box-shadow: -1px -1px 5px var(--text-color),
      			1px 1px 5px var(--primary-color);
  }
  a:hover{
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: -1px -1px 5px var(--text-color) inset,
      			1px 1px 5px var(--primary-color)inset;
  }
  a.logoutBtn{
    width: 2rem;
    padding: 0.25rem;
    fill: var(--accent-color);
  }
  a.logoutBtn:hover{ fill: var(--primary-color); }
}
p{ margin-bottom: 0.5rem; }