@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

/* CORE PAGE */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: black;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.page {
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 100px;
    position: relative;
}

.page::before {
    background: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)), url('./../media/wallpapers/wallpaper.png');
    background-position: center;
    background-size: cover;
    content: '';
    filter: blur(10px);
    inset: -20px;
    position: absolute;
    z-index: -1;
}

/* NAVIGATION BAR */

header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 25px 50px;
    width: 100%;
}

.logo {
    align-items: center;
    display: flex;
    gap: 10px;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.logo img:first-child {
    filter: brightness(0) invert(10%) sepia(85%) saturate(5000%);
    height: auto;
    width: 50px;
}

.logo img:last-child {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 50px;
    list-style: disc;
}

nav a {
    color: white;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: .25s;
}

nav a:hover,

.active {
    color: #800000;
    font-size: 11px;
    text-decoration: underline;
}

/* TEXT */

h1 {
    font-size: 50px;
    font-weight: 100;
    letter-spacing: 10px;
}

h2 {
    font-size: 25px;
    font-weight: 100;
    letter-spacing: 5px;
}

h3 {
    font-size: 15px;
    font-weight: 100;
    letter-spacing: 5px;
}

p {
    color: #c0c0c0;
    font-size: 15px;
    font-weight: 100;
    line-height: 1.5;
}