/* <weight>: Use a value from 100 to 900
<uniquifier>: Use a unique and descriptive class name */

html {
    scroll-behavior: smooth;

}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.08em;
    color: rgb(174, 37, 37);
    /*background-image: url("background.svg"); /* background-color: rgb(174, 37, 37); */
    /* background-attachment: fixed; */
    background-color: rgba(0, 0, 0, 0.95);
    position: relative;
    height: max-content;

}


.links {
    width: 100%;
    position: fixed;
    z-index: 100;
    display: flex;


    .controls {
        color: #b9bf01;
        margin: 10px;
        transition: transform 0.3s;

    }

    .site-nav {
        width: 95%;
        display: flex; /* Makes the children flex items */
        justify-content: flex-end;
        list-style: none; /* Removes the bullet points */
        margin: 0;
        padding: 0;


        li {

            margin: 10px;
            color: #b9bf01;
            text-shadow: 0.3px 1px 1px rgba(255, 255, 255);
            letter-spacing: 0.4em;
            transition: transform 0.3s;

            a {
                text-decoration: none;
                color: inherit;
                font-style: italic;
            }

        }
    }
}

.circle {
    cursor: pointer;
}


.controls:hover {
    transform: scale(1.8);
}

.site-nav-link:hover {
    transform: scale(1.3);
}


#title {
    width: 100%;
}

#main-title {
    display: flex;
    justify-content: center;

    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;


    section h1 {
        font-weight: 900;
        font-stretch: extra-expanded;
        transform: scale(1.5, 3);
        line-height: 1.2; /* Adjust line height */
        font-size: 2em;
        letter-spacing: 0.3em;
        text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.2);
        text-align: center;
        margin-inline: auto;
        overflow: hidden;
        /*  keeps on a single line*/
        white-space: nowrap;
        animation: typing 1.8s steps(20) forwards;

    }

}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


.intro {
    display: flex;
    justify-content: center;
    gap: 5%;
    @media screen and (max-width: 600px) {

        display: flex;
        flex-direction: column;
        .intro-pic-div {
            margin-bottom: 5%
        }
    }


    .intro-pic-div {
        width: 28%;
        max-width: 371px;


        .intro-picture {
            max-width: 100%;


        }
    }


    .intro-text {
        flex-direction: column;
        width: 30%;
        max-width: 400px;


        #who-am-i {
            display: flex;
            flex-direction: row;
            margin-top: 0;
            font-size: 2rem;
            margin-bottom: 31px;


        }

    }
}


.divider {
    margin: 200px;
}


.cv-section {

    display: flex;
    justify-content: center;
    gap: 5%;

    .cv-image-div {
        width: 28%;
        max-width: 371px;

        img {
            max-width: 100%;
        }
    }

    .cv-section-text {
        flex-direction: column;
        width: 400px;
        height: 500px;


        .cv-section-title {

            font-stretch: extra-expanded; /* Wider characters */
            letter-spacing: 2px; /* Extra spacing */
            transform: scale(1.5, 2);
            display: flex;
            justify-content: center;

        }

        .cv-section-list {

            ul {
                white-space: nowrap;
                list-style: none;
                padding: 0;


                li {
                    margin-top: 10%;
                    margin-bottom: 10%;
                    display: flex;
                    justify-content: center;
                }
            }

        }
    }
}


.divider-2 {
    margin: 80px;
}


.footer-contact {
    padding: 30px;


    ul {
        list-style: none;
        margin: 15px;
        display: flex;
        justify-content: center;

        li {
            text-decoration: none;
            font-style: italic;
            margin-inline: 15px;
            transition: transform 0.3s;
        }

        li:hover {
            transform: scale(1.5);
        }
    }


}


img {
    border-radius: 2%;
    box-shadow: 5px 5px 10px 7px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s
}

img:hover {
    transform: scale(1.08);
}


.footer-music {
    width: 98%;
    display: flex;
    justify-content: center;
    position: fixed;
    padding: 2px;
    bottom: 0;


    .music-player {
        width: 98%;

    }

}


.footer-music {


}

#progress {

    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: #b9bf01;
    cursor: pointer;
    box-sizing: content-box;
    transition: transform 0.3s;
    opacity: 0.5;

}


#progress::-moz-range-thumb {
    /* For Firefox */
    border: none;
    border-radius: 0;
    width: 5px;
    height: 25px;
    background: rgba(0, 0, 0, 1);
}

#progress:hover {
    transform: scale(1.009);

}

#progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: black; /* Your desired color */
    width: 15px; /* Set a narrow width */
    height: 15px; /* Set a height to make it a vertical line */
    border-radius: 0; /* Remove the rounded corners to make it a square/line */
    /* Remove any border or box-shadow if they are making it circular */
    border: none;
    box-shadow: none;
}



