@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('./inter.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    src: url('./inter-tight.ttf') format('truetype');
}

:root {
    font-size: 14px;
}

html, body {
    background: linear-gradient(135deg, #0f0f0f 0%, #000000 100%) no-repeat;
    background-size: cover;
    color: #fefefe;
    font-family:"Inter";
    height: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: "Inter Tight";
    font-weight: 600;
}

main {
    padding: 25px;
    margin: auto;
    max-width: 700px;
}

header {
    margin-top: 15px;
    margin-bottom: 20px;
}

p, ul{
    color: #aeaeae;
    line-height: 1.6;
}

a {
    color: inherit;
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

a:hover {
    opacity: 1;
}

.footer {
    border-top: 1px solid #222;
    font-size: 0.8rem;
    margin-top: 50px;
    padding-top: 12px;
    text-align: left;
}

.under-construction {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fefefe20;
    color: #fefefe !important;
    background-color: #ffffff10;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.9rem;
}