@font-face {
    font-family: 'IvyEpic';
    src: url('fonts/IvyEpic-SemiBold-Text.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IvyEpic', 'Arial', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.home-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.nav-button {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 1.5rem 2rem;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1.3;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-button.active {
    background-color: #e0e0e0;
    color: #333;
}

.back-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.back-home:hover {
    background-color: #555;
}

.pdf-container {
    margin-top: 2rem;
    text-align: center;
}

.pdf-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pdf-button:hover {
    background-color: #0056b3;
}

.menu-button {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 1.5rem 2rem;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1.3;
    border: none;
    cursor: pointer;
    margin: 0.5rem auto;
}

.menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}