/* Style CSS - Main stylesheet for the site */

/* Reset CSS & Import Globaly Defined Variables from Theme */
@import "./reset.css";
@import "./theme.css";

/* Import CSS Components */
@import "./littlelink.css";

html,
body {
    /* Default background color, font, font size, text color & line height */
    background: var(--bg-color);
    font-family: var(--default-font), Arial, sans-serif;
    font-size: var(--font-size);
    color: var(--text-color);
    line-height: 1.6;
}

/* Background Image & Particles */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-image: url("./../media/servers.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 10%;
}

#particles-js {
    opacity: 40%;
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
}

/* Generic CSS Components */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    max-width: 768px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.avatar {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    object-fit: cover;
    background-position: center;
    margin: 16px auto;
    display: block;
    border: var(--white) solid 8px;
}

.subheading {
    font-size: 1.1rem;
    font-weight: normal;
}

/* Default font, font size & font color */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--page-font);
    margin: 8px auto;
    line-height: 1.6;
}

h1 {
    font-size: 2.25rem;
    font-weight: 900;
}

h2 {
    font-size: 2rem;
    font-weight: 700;

}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

h4 {
    font-size: 1.50rem;
    font-weight: 400;
}

h5 {
    font-size: 1.25rem;
    font-weight: 400;
}

h6 {
    font-size: 1.125rem;
    font-weight: 400;
}

p {
    font-size: 1rem;
    font-weight: 400;
}

/* Footer properties */
footer {
    margin: 8px auto;
}