:root {
    --font-size: 16px;
    --primary-color: #ffffff;
    --text-color: #ffffff;
    --background-light: #0e0e0e;
    --header-height: 100vh;
}

@font-face {
    font-family: Texts;
    src: url("assets/fonts/Figure Things.otf");
}

@font-face {
    font-family: Titles;
    src: url("assets/fonts/Fresh Eaters.otf");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Texts';
        font-size: 16px;
/*    font-size: 1vw;*/
    color: #fafafa;
    line-height: 1.5;
    overflow-x: hidden;
    min-height:100vh;
}

.top-background {
    background: #0e0e0e;
    background-size: cover;
    background-attachment:fixed;
    height: 100vh;
}

.top-studioName {
    font-family: 'Titles';
    margin: 0 0;
    padding-top: 8%;
    text-align: center;
    font-size: calc(24px + 5vw);
    line-height: normal;
    /*    font-size: 100px;*/
}

.top-img {
    display: flex;
    justify-content: center;
}

.top-tagline {
    margin: 0 0;
/*    padding-bottom: 200px;*/
    text-align: center;
}

footer {
    position: fixed;
    background-color: #0e0e0e;
    text-align: center;
    font-size: 12px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
}

img {
    width: 50vh;
    max-width: 500px;
    margin-top: 30px;
    margin-bottom: 30px;
}


/*------------------- adapt on smaller screens ---------------*/

@media only screen and (max-width: 768px) {
/*    top-img img {
        width: 30%;
    }*/
    img {
        width: 50vw;
    }
}

 @media only screen and (max-width: 1250px) {      
        /* MAKES LEFT AND RIGHT MARGINS DISAPEAR*/
.project
{
    margin-left: 0%;
    margin-right: 0%;
width: 100%;/* The width is 100%, when the viewport is 768 or smaller */
}
.project-content-row{
    flex-direction:column;
}
}