@font-face {
    font-family: 'Jersey10';
    src: url('Fonts/Jersey10-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --accent-color: cyan;
    --text-color: aliceblue;
    --nav-height: 120px;
}
h1.Text {
    padding-top: var(--nav-height);
    font-size: 7rem;
}
.hero-subtitle {
    font-size: 2rem;
    margin-top: 1rem;
}
#top-nav li a {
    text-decoration: none;
    color: var(--text-color);
    text-shadow: var(--accent-color) 2px 2px;
    font-size: clamp(1rem, 4vw, 2.5rem);
    transition: color 0.3s ease, transform 0.2s ease;
}
#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.Icon {
    height: 30px;
    width: 30px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

#top-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 1rem 2rem;
    gap: 2rem;
}


body {
    font-family: 'Jersey10', sans-serif;
    padding-left: 2rem;
    padding-right: 2rem;
    background-image: url('Images/background_real.jpg');
    background-size: contain;
    background-repeat: repeat;
    background-position: top center;
    padding-top: var(--nav-height);
    margin: 0;
}

.Text {
    color: var(--text-color);
    text-shadow: var(--accent-color) 2px 2px;
}
#top-nav li a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}
section {
    scroll-margin-top: 120px;
}
html {
    scroll-behavior: smooth;
}
a {
    color: inherit;
}

a:hover {
    color: var(--accent-color);
}
section {
    margin-bottom: 6rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.debian {
    display: inline-block;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}