html,body{
    padding: 0;
    margin: 0;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

#gradient{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(-45deg , black 50%, rgb(51, 51, 51) 100%);
}

body{
    color:white;
    line-height: 1.6;
    @media(max-width:550px){
        max-height: calc(100vh - 180px); 
        overflow: auto;
    }
}

*{
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

    *::-webkit-scrollbar {
        display: none;
    }

    -ms-overflow-style: none;
    scrollbar-width: none;
    
}

a{
    color: white;
}

img{
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.glow{
    color: white;
    text-shadow: 0px 0px 20px white;
}

#work-info{
    width:62%;
    @media(max-width:550px){
        width: initial;
    }
}

.container{
    max-width: 1600px;
    margin: auto;
    /* background: linear-gradient(0deg, #eee, white 70.71%);
    background: linear-gradient(to left , #171A17, black); */
    padding: 10px;

    #header{
        display: flex;
        align-content: center;
        justify-content: space-between;
        padding: 20px 0px;

        div{
            align-content: center;
        }

        @media(max-width:550px){
            flex-direction: column;
        }
    }

    #about{
        display: flex;
        margin-left: 5px;
        vertical-align: top;
        padding: 30px 5px;
        gap: 60px;

        @media(max-width:550px){
            flex-direction: column;
            gap: 20px;
            div{
                max-width:initial!important;
            }
        }
        li{
            white-space: nowrap;
        }
    }

    #logo{
        display: flex;
        align-items: center;
        gap: 5px;

        *{
            margin: 0px;
            padding: 0px;
            color: white;
            text-shadow: 0px 0px 20px white;
        }

        svg{
            width: 50px;
        }

        div{
            font-size: 16px;
            display: block;
            line-height: 1.2;
        }
    }

    .section-title{
        /* position: sticky; */
        margin: 10px 0px;
        color: white;
        text-shadow: 0px 0px 20px white;
        text-transform: uppercase;
        top: 0px;
        padding: 15px 0px;
        font-size: 24px;
        /* background: linear-gradient(0deg, #ccc, white 90%); */
    }

    .photo-cols{
        columns: 3;
        column-gap: 4px;

        @media (max-width:768px){
            columns: 3;
        }
        
        @media (max-width:550px){
            columns: 1;
        }
    }
}
