@font-face {
    font-family: HelveticaNeueLight;
    src: url(./fonts/HelveticaNeueLight.otf);
}
  
* {
    box-sizing: border-box;
}

body {
    font-family: HelveticaNeueLight;
    letter-spacing: 0.3px;
    line-height: 12px;
    cursor: url(./images/cursor-normal.png), none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* menu */
.nav {
    position: fixed;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 9999;
    background-color: white;
}

.nav-item {
    font-size: 11px;
    margin: 0;
    padding: 10px;
}

.nav-item a {
    color: rgb(184, 184, 184);
    text-decoration: none;
    cursor: url(./images/cursor-hover.png), none;
}

.nav-item a:hover {
    color: black;
}

/* flex */
.flex-container {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.text-item{
    flex: 30%;
    max-width: 30%;
    margin: 0;
    padding: 0;
}

.text-main{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    width: 100%;

    font-size: 12px;
    color: black;
    margin: 0;
    padding: 15px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contactme {
    flex: 16%;
    max-width: 16%;
    margin: 0;
    padding: 0;
}

.text-sub {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    height: 100vh;
    line-height: 10px;
    
    font-size: 10px;
    margin: 0;
    padding: 15px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

span {
    font-size: 11px;
}

.text-sub a {
    color: black;
    text-decoration: underline;
    cursor: url(./images/cursor-hover.png), none;
}

img {
    width: 90%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.image-1 {
    flex: 18%;
    max-width: 18%;
    margin: 0;
    padding: 5px;
}

.image-2 {
    flex: 18%;
    max-width: 18%;
    margin: 0;
    padding: 5px;
}

.image-3 {
    flex: 18%;
    max-width: 18%;
    margin: 0;
    padding: 5px;
}

.image-1 a,
.image-2 a,
.image-3 a {
    cursor: url(./images/cursor-hover.png), none;
}

.grid-container-phone {
    display: none;
}

.big-text {
    display: none;
}

@media screen and (max-width: 720px) {
    .flex-container {
        display: none;
    }

    .grid-container-phone {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        margin: 0px 10px 0px;
        padding: 30px 0px 0px;
    }

    .grid-item {
        margin: 0;
        padding: 5px; 
    }

    .span1 {
        grid-column-start: 1;
        grid-column-end: 2;
        height: 10vh;
        width: 100%;
    }

    .text-sub {    
        width: 100%;
        height: 100%;  
        justify-content: flex-start;   
        text-align: start;
        font-size: 9px;
        line-height: 9px;
        margin: 0;
        padding: 0;
            
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .span2 {
        grid-column-start: 3;
        grid-column-end: 4;
        height: 10vh;
        width: 100%;
    }

    .text-design {    
        width: 100%;
        height: 100%;      
        text-align: end;
        font-size: 10px;
        line-height: 10px;
        margin: 0;
        padding: 0;
            
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .text-design a {
        color: black;
        text-decoration: underline;
        cursor: url(./images/cursor-hover.png), none;
    }

    .big-text { 
        display: flex;
        position: absolute;
        top: 0;
        justify-content: flex-end;
        align-items: flex-end;
        height: 100vh;
        font-size: 12.5px;
        line-height: 12.5px;
        margin: 0;
        padding: 15px;

        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}

@media screen and (max-height: 740px) {

    .text-design {
        font-size: 8.5px;
        line-height: 8.5px;
    }

    .big-text {
        font-size: 11px;
        line-height: 11px;
    } 

}