
@font-face {
  font-family: 'Humanist';
  src: url('./Humanist521BT.ttf') format('truetype'); 
}

:root{
    --bg-dark: hsl(224 0% 1%);
    --bg: hsl(224 0% 4%);
    --bg-light: hsl(224 0% 9%);
    --text: hsl(224 0% 90%);
    --text-muted: hsl(224 0% 69%);
    --highlight: hsl(224 0% 39%);
    --border: hsl(224 0% 31%);
	--border-muted: hsl(224 0% 13%);
  
    --header-size: 11%;
    --footer-size: 3%;

    --border-size: 1px;

    --transform: transform 0.4s cubic-bezier(.68, -0.55, .27, 1.55);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none; 
    scrollbar-width: none;    
  	font-family: "Humanist";
 	  color: var(--text)
}

body{
    height: 100dvh;
    width: 100dvw;
}

.bg-video {
    background-color: var(--bg-dark);
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -100;    
    overflow: hidden;      
}

header{
    z-index: 500;
    position: absolute;
    width: 100%;
    height: var(--header-size);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-dark);
    border-bottom: var(--border-size) solid var(--border);
    color: white;
    font-size: 17px
}

#logo {
  z-index: 1000;
  height: 69%;
  position: absolute;
  left: 50%;
  top: 13%;
  border-radius: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(.68, -0.55, .27, 1.55);
}

#logo img {
  height: 100%;
  border-radius: 50%;
}

#logo:hover {
    transform: translateX(-50%);
    transform: translateX(-50%) scale(1.2);
  }

.navlink {
	  height: 100%;
    width: 50%;
    margin: auto;
    text-decoration: none;
    text-align: center;
    transition: var(--transform);
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;


    &:hover {
        transform: scale(1.11);
        color: white;
  }&::selection{  
    	background: #ff3333;
  		color: white;}
}

main{
    position: fixed;
    top: var(--header-size);
    height: calc(100% - var(--header-size) - var(--footer-size));
    width: 100%;
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: hidden;
}

footer{
    z-index: 0;
    position: fixed;
    bottom: 0%;
    width: 100%;
    height: var(--footer-size);
    background-color: var(--bg-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: var(--border-size) solid var(--border);
  	font-size: 11px
}