* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.showcase {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    color: white;
    overflow: hidden;
}

.showcase video {
    width: 85%;
    height: auto;
    object-fit: contain;
}

.about_me {
    width: 100%;
    min-height: 110vh;
    display: flex;
    background-color: #111;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.description {
  width: 50%;
  height: 80vh;
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  padding-left: 10vw;
}

#title{
    height: 20%;
    width: 100%;
    font-size: clamp(2rem, 6vw, 5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#about{
    height: 70%;
    width: 100%;
    font-size: 1.2vw;
    display: flex;
    justify-content: center;
    line-height: 1.7;
    text-align: center;
}

.owen_image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.owen_image img{
    height: 80vh;
}

.pictures{
    width: 100%;
    min-height: 110vh;
    display: flex;
    background-color: #3B3923;
    color: white;
    flex-direction: column;
}

#pictures-title{
    height: 20vh;
    display: flex;
    align-items: center;
    font-size: clamp(1.5rem, 5vw, 3rem);
    width: 100%;
    padding-left: 17vw;
    margin-top: 2vh;
}

.slider-body{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2vh;
}

.slider-container{
    max-width: 64vw;
    width: 100%;
}

.slider-wrapper{
    position: relative;
}

.slider-wrapper .slide-button{
    position: absolute;
    top: 50%;
    height: 50px;
    width: 50px;
    color: #fff;
    border: none;
    outline: none;
    background: #000;
    font-size: 2.2rem;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover{
    background: #444;
}

.slider-wrapper .slide-button#prev-slide {
    left: -10vw;
    display: none;
}

.slider-wrapper .slide-button#next-slide {
    right: -10vw;
}

.slider-wrapper .image-list{
    display: grid;
    gap: 2vw;
    font-size: 0;
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    grid-template-columns: repeat(10, 1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}

.slider-wrapper .image-list .image-item {
    width: 20vw;
    height: auto;
    object-fit: cover;
}

.slider-container .slider-scrollbar{
    height: 24px;
    width: 64vw;
    display: flex;
    align-items: center;
}

.slider-scrollbar .scrollbar-track{
    height: 2px;
    width: 100%;
    background: #ccc;
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 4px;
}

.slider-scrollbar .scrollbar-thumb{
    position: absolute;
    height: 100%;
    width: 50%;
    background: #000;
    border-radius: inherit;
    cursor: grab;
}

.slider-scrollbar .scrollbar-track:active{
    cursor: grabbing;
    height: 8px;
    top: -2px
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: 10px;
}

.contact
{
    min-height: 100vh;
    background-color: #111;
    display: flex;
    flex-direction: row;
}

.contact-container
{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.contact-image
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10vw
}

.contact-image img{
    width: 40vw;
    height: auto;
}

.contact-description{
    display: flex;
    flex-direction: column;
    width: 40%;

}
#contact-container{
    height: 30%;
    width: 100%;
    font-size: 4.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:white;
    margin-top: 5vh;
}

#contact-info{
    height: 60%;
    width: 100%;
    font-size: 1.4vw;
    display: flex;
    line-height: 5;
    text-align: center;
    color: white;
    flex-direction: column;
}

.quote{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4vh;
    font-size: 1.5vw;
}

