:root {
    --background-color: rgb(19, 19, 19);
}

@font-face {
    font-family: 'pixel';
    src: url(assets/VP\ Pixel\ Dot.woff2) format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    color: rgb(222, 0, 0);
    font-family: 'pixel';


    background: #000000;
    background-image: linear-gradient(rgba(222, 0, 0, 0.43) .1em, transparent .1em), linear-gradient(90deg, rgba(222, 0, 0, 0.46) .1em, transparent .1em);
    background-size: 3em 3em;
}

.taskbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background-color: rgb(222, 0, 0);
    color: black;
    font-size: 14px;
    padding: 0 16px;
    box-sizing: border-box;
}

.container1 {
    margin: 30px auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.navbar {
    display: flex;
    justify-content: center;
}

.moonicon {
    width: auto;
    height: clamp(24px, 7vw, 55px);
}

.nav-inner {
    display: inline-flex;
    gap: 15px;
    padding: 10px;
    background-color: var(--background-color);
    border: 3px solid rgb(222, 0, 0);
    font-size: clamp(12px, 2.5vw, 20px);

}

.nav-inner a {
    color: rgb(222, 0, 0);
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    gap: 10px;
}

header h1 {
    font-size: clamp(24px, 6vw, 55px);
    margin: 0;
    line-height: 1;
}