@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Regular SF Pro Rounded */
@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFRounded-Regular.woff2') format('woff2'),
         url('fonts/SFRounded-Regular.woff') format('woff'),
         url('fonts/SF-Pro-Rounded-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium SF Pro Rounded */
@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFRounded-Medium.woff2') format('woff2'),
         url('fonts/SFRounded-Medium.woff') format('woff'),
         url('fonts/SF-Pro-Rounded-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold SF Pro Rounded */
@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFRounded-Bold.woff2') format('woff2'),
         url('fonts/SFRounded-Bold.woff') format('woff'),
         url('fonts/SF-Pro-Rounded-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    background-color: #0a0a0a;
    color: white;
}

/* Global comfortable line spacing */
body {
    line-height: 1.25;
}

/* Headings a bit tighter */
h1, h2 {
    line-height: 1;
}
h3, h4, h5, h6 {
    line-height: 1.25;
}

/* Paragraphs slightly more spacing for readability */
p {
    line-height: 1.7;
    margin-top: 0.9em;
    margin-bottom: 1.1em;
}

/* Optional: tighter spacing inside footer, keep it compact */
footer {
    line-height: 1.4;
}

/* h1 and h2: SF Pro Rounded Bold */
h1, h2 {
    font-family: 'SF Pro Rounded', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

/* h3-h6: SF Pro Rounded Medium */
h3, h4, h5, h6 {
    font-family: 'SF Pro Rounded', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
}

/* All other text: Inter */
body, p, li, a, button, input, textarea, select, th, td, span, div {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

div.main {
    text-align: center;
}

div.main p {
    font-size: large;
}

.rounded {
    border-radius: 50%;
}
.socials *{
    font-size: 1.25em;
    color: white;
    text-decoration: none;
}
.socials *:hover, a:hover {
    color: #999999;
}

footer {
    font-size: small;
}




