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

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

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.6rem;
    font-weight: 300;
    color: #666666;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.button-group {
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.links {
    font-size: 0.9rem;
    color: #888888;
}

.links a {
    color: #5b7586;
    text-decoration: none;
    margin: 0 4px;
    transition: color 0.2s ease;
}

.links a:hover {
    color: #000000;
}
