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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #333333;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 4rem;
    padding: 2rem;
}

.title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.link {
    font-size: 1.5rem;
    text-decoration: none;
    color: #34495e;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 400;
}

.link:hover {
    color: #7f8c8d;
}

.link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #34495e;
    transition: width 0.3s ease;
}

.link:hover::after {
    width: 100%;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3.2rem;
    }

    .link {
        font-size: 1.3rem;
    }

    .container {
        gap: 3rem;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 7rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }

    .link {
        font-size: 1.2rem;
    }

    .container {
        gap: 2.5rem;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 7rem;
    }
}
