body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #23272A;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.content {
    display: none;
}

.content {
    padding: 20px;
    margin: 20px;
    background-color: #1F2833;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #66FCF1;
}

.content p {
    color: #C5C6C7;
}

.btn {
    background-color: #45A29E;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #66FCF1;
}

header {
    background-color: #2C2F33;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

nav ul li a:hover, nav ul li a.active {
    color: #7289DA;
}

nav ul li a i {
    margin-right: 8px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 35px;
}

.welcome {
    margin-bottom: 40px; 
}

.welcome h1 {
    font-size: 7.5rem; 
    font-weight: 700;
    margin-bottom: 20px; 
}

#terminal {
    white-space: pre;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 3rem; 
}


#terminal .root {
    color: #8BC34A; 
    font-weight: bold;
}

#terminal .separator {
    color: #ffffff; 
}

#terminal .prompt {
    color: #3498DB; 
}

nav ul li a i {
    margin-right: 8px;
    color: #7289DA; 
}


@media only screen and (max-width: 600px) {
    body, html {
        overflow: auto;
    }

    header {
        padding: 10px 0;
    }

    nav ul {
        flex-direction: column;
    }

}

.cookie-consent {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1001;
    display: none; 
}

.cookie-consent p {
    margin: 0;
    padding-right: 10px;
    display: inline;
}

#acceptCookies {
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#acceptCookies:hover {
    background-color: #45a049;
}
