@import url("./nav.css");

@font-face {
  font-family: 'opendyslexic';
	src: url('/assets/font/OpenDyslexic-Regular.otf');
} 

:root {
    --background: #222831;
    --background-2: #00ff26;
    --primary: #cdd6f4;
    --accent: #fab387;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: 'opendyslexic';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #1e1e2e;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--primary);
}

.background {
    position: fixed;
    object-fit: cover;
    top: -10%;
    left: -10%;
    width: 120vw;
    height: 120vh;
    z-index: -2;
    opacity: .4;
    filter: blur(10px);
}

.content {
    height: 100%;
    padding-top: 110px;
}