@import url('variables.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

header {
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    text-align: center;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .logo img {
    max-width: 250px;
    border: 5px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

.description h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.description p {
    font-size: 1.2em;
    color: var(--muted-text-color);
}

footer {
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    text-align: center;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}