* {
    margin: 0px;
    padding: 0px;
}

body {
    width: 100vw;
    height: 100vh;

    font-family: tablet-gothic-wide, sans-serif;
font-weight: 300;
font-style: normal;
  
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    background-position: center;
    color: white;
    mix-blend-mode: difference;
}

#italic{
    font-style: italic;
}

#bottom {
    position: fixed;
    bottom: 0;
}

#name {
    padding: 20px;
    padding-bottom: 0;
    line-height: 54px;
    user-select: none;

}

h1 {
    font-weight: 300;
    font-size: 54px;
    color: white;

}



#footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: calc(100vw - 40px);
    letter-spacing: 0.1px;
    line-height: normal;
}


ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* Use Flexbox to align items */
}

ul li {
    margin-right: 20px;
    /* Adjust spacing */
    font-size: 18px;
}

a {
    text-decoration: none;
    color: white;

}

a:hover {
    color: #a3a3a3;
    transition: ease 0.5s;
}

.scroll-container {
    user-select: none;
    padding: 20px;
    padding-top: 8px;
    position: relative;
    width: calc(100vw - 40px);
    /* Full viewport width */
    overflow: hidden;
    /* Hide overflow */
    display: flex;
    /* Use flexbox to align items */
}

.scroll-content {
    display: flex;
    /* Arrange items in a row */
    white-space: nowrap;
    /* Prevent line breaks */
    animation: scroll-left 40s linear infinite;
    /* Continuous scrolling */
}

.scroll-item {
    font-size: 12px;
    /* Font size for text */
    letter-spacing: 0.7px;
    width: 30vw;
    display: flex;
    justify-content: center;
    color: white;
    /* Text color */
    mix-blend-mode: difference;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
        /* Start at the beginning */
    }

    100% {
        transform: translateX(-50%);
        /* Move fully to the left */
    }
}



@media only screen and (max-width: 920px) {

    .scroll-item {
        font-size: 12px;
        width: 50vw;
    }

    h1 {
        font-size: 36px;
        line-height: 36px;
    }

    #name{
        padding: 10px;
        padding-bottom: 0;
    }
    #footer {
        justify-content: flex-start;
        padding: 10px;
        padding-bottom: 20px;
        line-height: normal;
    }

    ul {
        display: flex;
        flex-direction: column;

        /* Use Flexbox to align items */
    }

    ul li {
        font-size: 16px;
        margin-right: 25px;
    }

    body {
       
        transition: background-image 2s ease-in-out;
    }

}