*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; 
    --bg-color: #000;
    
}


html,
body {
    font-family: 'Inter';
    font-size: 1.6vh;
    color: white;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    /* padding: 0; */
    font-family: 'Inter';
}

body {
    background-size: cover;
    background-color: var(--bg-color);
    list-style: none;
}

header {
    display: flex;
    margin: 1rem;
    height: 90svh;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

header #line {
    background: white;
    height: 6rem;
    width: .25rem;
    margin: .75rem;
}

footer {
    display: flex;
    flex-direction: column;
    text-align: center;
}

footer a, footer a:visited {
    color: white;
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    header {
        flex-direction: column;
    }
    
    header #line {
        display: none;
    }

    header span:nth-of-type(1) {
        font-size: 2.4rem;
    }

    header > div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    header > div > #bigline {
        background: white;
        height: 5rem;
        width: .3rem;
        margin: 1rem;
    }

    header > div > span {
        font-size: 2.4rem;
    }
    
    
}

