﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

a {
    color: #38bdf8;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }
