:root {
    --text-primary-color: rgb(255, 255, 255);
    --content-background-color: rgb(26, 27, 29);
    --nav-underline-color: rgb(255, 207, 103);
}

@font-face {
    font-family: "Nunito";
    src: url('../fonts/Nunito-Light.ttf');
}

@font-face {
    font-family: "Nunito-Light";
    src: url('../fonts/Nunito-ExtraLight.ttf');
}

@font-face {
    font-family: "Nunito-Bold";
    src: url('../fonts/Nunito-Bold.ttf');
}

*{
    /* General Reset */
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Nunito", sans-serif;
}

body{
    background-color: var(--content-background-color);
}

html {
    scroll-behavior: smooth;
}

/* Sections & Section Titles */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    scroll-margin-top: 133px;

    margin-bottom: 80px;
}

section h1 {
    font-size: 40px;
    font-family: "Nunito", sans-serif;
    font-weight: normal;
    color: var(--text-primary-color);

    width: 80%;
    margin-top: 20px;
    
    text-align: left;
}

section hr {
    width: 80%;
    margin-top: 10px;
    margin-bottom: 20px;

    border-color: var(--text-primary-color);
    background-color: var(--text-primary-color);
}

.icon{
    background-color: rgb(0, 0, 0, 0);
    margin: 0px;

    padding: 0px;

    height: auto;
}

.download .icon{
    transform: translateY(1px);

    width: 30px;
}

.play .icon{
    transform: translateY(-1px);

    width: 26px;
}

/* Media Query for Larger Screens */
@media ((min-width: 768px) and (min-aspect-ratio: 7/10)) {
    section {
        scroll-margin-top: 65px;
    }

    section h1 {
        width: 60%;
        max-width: 1000px;

        text-align: left;
    }

    section hr {
        margin-bottom: 20px;

        width: 60%;
        max-width: 1000px;
    }
}