:root {
    --text-color: rgb(255, 255, 255);
    --light-color: rgb(153, 153, 153);
    --accent-color: rgb(12, 250, 169);
    --overlay-color: rgba(1, 4, 24, 0.75);
}

/* Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-200.eot');
    src: local(''),
         url('../fonts/inter-v12-latin-200.eot?#iefix') format('embedded-opentype'),
         url('../fonts/inter-v12-latin-200.woff2') format('woff2'),
         url('../fonts/inter-v12-latin-200.woff') format('woff'), 
         url('../fonts/inter-v12-latin-200.svg#Inter') format('svg'); 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-regular.eot'); 
    src: local(''),
         url('../fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), 
         url('../fonts/inter-v12-latin-regular.woff') format('woff'), 
         url('../fonts/inter-v12-latin-regular.svg#Inter') format('svg'); 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-600.eot'); 
    src: local(''),
         url('../fonts/inter-v12-latin-600.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/inter-v12-latin-600.woff2') format('woff2'), 
         url('../fonts/inter-v12-latin-600.woff') format('woff'), 
         url('../fonts/inter-v12-latin-600.svg#Inter') format('svg'); 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-700.eot'); 
    src: local(''),
         url('../fonts/inter-v12-latin-700.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/inter-v12-latin-700.woff2') format('woff2'), 
         url('../fonts/inter-v12-latin-700.woff') format('woff'), 
         url('../fonts/inter-v12-latin-700.svg#Inter') format('svg'); 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #010418;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.avif');
    background-size: cover;
    background-position: center;
    filter: blur(15px) grayscale(40%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: -1;
}

.main-container {
    max-width: 68.75rem;
}

.logo-wrapper {
    height: 5.875rem;
}
.logo-img {
    height: 100%;
    width: auto;
}

.link-accent {
    color: var(--accent-color);
    transition: opacity 0.2s ease;
}
.link-accent:hover {
    color: var(--accent-color);
    opacity: 0.8;
}