@font-face {
    font-family: '1756 Dutch W01 Normal';
    src: url('../assets/fonts/1756 Dutch W01 Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-y: scroll; 
    overflow-x: hidden; 
    font-family: '1756 Dutch W01 Normal', Arial, sans-serif;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

body {
    height: 750vh;
}

* {
    margin: 0;
    padding: 0;
}

.wrapper {
    z-index: 50;
    position: fixed; 
    top: 0;
    left: 0; 
    
    width: 400vw; 
    height: 100vh;
    display: flex;
    white-space: nowrap; 
}

.section {
    width: 100vw;
    height: 100vh; 
    padding: 2rem;
    
    display: flex;
    flex-shrink: 0; 
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.portfolio-title {
    width: 1920px;
    height: 1080px;
}

@media (max-width: 900px) {
    .portfolio-title {
        width: calc(1920px / 2);
        height: calc(1080px / 2);
    }
}

@media (max-width: 500px) {
    .portfolio-title {
        width: calc(1920px / 3);
        height: calc(1080px / 3);
    }
}

.title-container {
    height: 17.5%;
    width: 100%;
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 950px) {
    .title-container {
        margin-top: 1rem;
    }
}

.content-container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 2.5rem;
    font-weight: 200 !important;
    font-size: 60px;
    text-shadow: 0.15rem 0.15rem 0.15rem rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    color: whitesmoke;
}


@media (max-width: 500px) {
    .title {
        font-size: 40px;
    }
}

.title-underline {
    width: 10rem;
    height: 0.25rem;
    background-color: whitesmoke;
    box-shadow: 0.15rem 0.15rem 0.15rem rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    border-radius: 1rem;
}
