@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
    --primary: #c0ff72;
    --primary-dark: #a8e560;
    --secondary: #333333;
    --minecraft: 'VT323', monospace;
    --background: #1a1a1a;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
    color: #f5f5f5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    text-rendering:optimizeLegibility;
}

header {
    background-color: var(--background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
    border-bottom: 2px solid var(--primary);
    font-size: 24px;
    font-family: var(--minecraft);
    color: var(--primary);
    text-shadow: 2px 2px 0 #000;
    
}

.navbar a {
    color: #f5f5f5;
    text-decoration: none;
    margin: 0 10px;
    text-shadow: 2px 2px 0 #000;
}

.navbar a:hover {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.description {
    padding: 100px 0;
    text-align: center;
}

.description-title {
    font-size: 50px;
    font-family: var(--minecraft);
    margin-bottom: 20px;
    color: var(--primary);
    
}

.description-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 #000;
    
}

.Hlinks {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    transition: background-color 0.3s;
    background-color: #5c5c5c;
    border: 4px solid #000;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
    margin: 10px;
    box-shadow: 
        inset -4px -4px 0 0 rgba(0, 0, 0, 0.3), 
        inset 4px 4px 0 0 rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.Hlinks .icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(2px 2px 0 #000);
}


.Hlinks:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 10px;
    color: #f5f5f5;
    font-size: 14px;
    text-align: left;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar a {
        margin: 10px 0;
    }
}
