@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Flow+Circular&family=Libre+Barcode+128&family=Playfair:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Wix+Madefor+Display:wght@400;500;600;700;800&display=swap');

/*
available-fonts {
    font-family: 'DM Sans', sans-serif;
    font-family: 'Figtree', sans-serif; (MAIN)
    font-family: 'Flow Circular', cursive;
    font-family: 'Libre Barcode 128', cursive;
    font-family: 'Playfair', serif;
    font-family: 'Wix Madefor Display', sans-serif;
}
*/
/*
    background-image: url('src/imageonline-co-noisedimage.png');

*/
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #010B13;
    color: rgb(224, 224, 224);
    font-family: 'Figtree', sans-serif;
}

main h1 {
    font-size: 12vw;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    letter-spacing: -2px;
}

main p {
    font-size: 2.4vw;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 6vw;
    margin-left: -13.1vw;
    transform: translate(-50%, -50%);
    letter-spacing: 1px;
}

header nav {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
    margin-left: 30px;
}

header ul {
    list-style: none;
    display: flex;
}

header li {
    margin-right: 10vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s;
}

a:hover {
    opacity: 70%;
}

footer {
    padding: 1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-weight: 300;

    font-size: 10px;
}