html {
    scroll-snap-type: y proximity;
}

body {
    margin: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888; 
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.container {
    margin: 10vh auto 0 auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    min-height: 90vh;
}

.slider {
    display: flex;
}

.image {
    height: 300px;
    width: 300px;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 5rem;
}

.slider > .orient {
    width: calc(100% - 300px - 5rem);
}

.orient.left {
    text-align: left;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE */
    user-select: none;
}

.f {
    font-family: 'Open Sans', Lato, Arial;
}

.hat{ 
    color: black;
    font-size: 36pt;
    font-weight: 390;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.pullover {
    color: black;
    font-size: 18pt;
    font-weight: 200;
    line-height: 1.4;
}
  
.shirt {
    color: rgba(33,33,33,1.0);
    font-size: 12pt;
    font-weight: 400;
    line-height: 1.6667;
}

@media (max-width: 1079px) {
    html {
        scroll-snap-type: none;
    }    

    body {
        zoom: 2;
    }

    .container {
        width: 80%;
        margin: auto;
        padding-top: 10%;
        min-height: unset;
    }

    .slider {
        display: block !important;
    }

    .image {
        width: 100%;
        aspect-ratio: 1;
        margin-right: 0;
        margin-bottom: 10%;
        min-height: 25rem;
    }

    .slider > .orient {
        width: 100%;
    }

    .shift {
        margin: 0 !important;
    }
}
