    /* CSS RESET */

html {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-size: 100%;
}

ol,
ul {
    list-style: none;
}
  
a {
    color: black;
    text-decoration: none;
}

    /* ALLGEMEIN */

body {
    /* font-family: ArmandGrotesk, sans-serif; */
    font-family: 'Armand Grotesk 2022', sans-serif;
    font-weight: 400;
}

.italic:hover {
    font-style: italic;
}

.color-black {
    color: black;
}

.bg-white {
    background-color: white;
}

.h-100 {
    height: 100%;
}

.min-h-100 {
    min-height: 100%;
}

.w-100 {
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.position-fixed {
    position: fixed;
}

/*
@font-face {
    font-family: ArmandGrotesk;
    src: url(https://blobstoragetest92154.blob.core.windows.net/alinastegemann/project_distracted/fonts/ArmandGrotesk2022-Regular.ttf);
  }
*/


    /* ALLGEMEIN – TABLET */

@media (min-width: 600px) and (max-width: 1024px) {
    
    body {
        margin: 0;
        font-size: 17px;
    }

    .content-page {
        padding: 2em 2em 2.5em 2em;
        min-height: 100%;
    }
}

    /* ALLGEMEIN – MOBIL */

@media only screen and (max-width: 600px) {
    body {
        margin: 0;
        font-size: 15px;
        line-height: 1.3;
    }

    .content-page {
        padding: 1em 1em 1em 1em;
        min-height: 100%;
        flex: 1 0 auto;
    }
}

    /* HEADER */

#name:hover {
    font-weight: 600;
    text-decoration: none;
}

#name:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(8);
}

#navigation a {
    cursor: none;
    padding: 0 0 0 2em;
}

#top {
    justify-content: space-between;
    text-decoration: none;
    padding: 1.5em 2em 1.5em 2em;
    z-index: 10;
    border-bottom-width: 2px;
    border-bottom-color: black;
    border-bottom-style: solid;
}

#navigation a {
    padding: 0 0 0 2em;
    display: inline-block;
    text-decoration: none;
}

    /* HEADER – TABLET */

@media (min-width: 600px) and (max-width: 1024px) {
    
    #navigation a {
        cursor: none;
        padding: 0 0 0 2em;
    }
    
    #top {
        justify-content: space-between;
        text-decoration: none;
        padding: 1.5em 4em 1.5em 2em;
        z-index: 10;
        border-bottom-width: 2px;
        border-bottom-color: black;
        border-bottom-style: solid;
    }
    
    #navigation a {
        padding: 0 0 0 2em;
        display: inline-block;
        text-decoration: none;
    }
}

    /* HEADER – MOBIL */

@media only screen and (max-width: 600px) {

    #navigation a {
        padding: 0.5em;
        display: inline-block;
        padding: 0px 10px;
        text-decoration: none;
    }

    #top {
        justify-content: space-between;
        text-decoration: none;
        padding: 1.2em 1em 1em 1em;
        z-index: 10;
        border-bottom-width: 2px;
        border-bottom-color: black;
        border-bottom-style: solid;
    }
}

    /* FOOTER */

.footer-pages {
    position: fixed;
    text-align: left;
    padding-bottom: 1em;
    padding-left: 2em;
    bottom: 0;
}

.footer {
    position: fixed;
    bottom: 1em;
    left: 2em;
}

    /* FOOTER – TABLET */

@media (min-width: 600px) and (max-width: 1024px) {

    .footer {
        text-align: left;
        width: 100%;
        left: 1em;
        bottom: 1em;
        position: fixed;
    }

}

    /* FOOTER – MOBIL */

@media only screen and (max-width: 600px) {

    .footer {
        text-align: center;
        width: 100%;
        font-size: 15px;
        flex-shrink: 0;
        padding-bottom: 1em;
        padding-top: 1em;
    }

    .footer-pages {
        text-align: center;
        position: relative;
        margin-top: 2em;
        padding-bottom: 1em;
        padding-left: 0;
    }
}

    /* CURSOR – NUR DESKTOP */

@media only screen and (min-width: 992px) {
    
    body {
        cursor: none;
    }

    a:hover {
        cursor: none;
    }

    .cursor {
        pointer-events: none;
        position: fixed;
        padding: 1.1rem;
        border-radius: 50%;
        mix-blend-mode: difference;
        transition: transform 0.3s ease;
        z-index: 999;
    }
}

    /* _____________________________________________________________________*/
    /* STARTSEITE */

.startseite {
    padding-top: 4.2em;
}

.image {
    display: none;
}

.project {
    padding: 14px 2px 11px 35px;
    position: relative;
    text-decoration: none;
    display: block; 
}

.project:hover {
    background-color:#BC9DFF;
    font-weight: 400;
    padding-left: 25px;
    transition: all 0.2s ease-out;
    text-decoration: none;
}

.project:hover ~ .image {
    display: block;
    position: absolute;
    right: 2em;
} 

.project-mobile-container {
    display: none;
}

.project-tablet-container {
    display: none;
}

.project-title {
    border-radius: 5px;
    border-color: black;
    border-width: 1.5px;
    border-style: solid;
    padding: 5px 7px 2px 7px;
    margin-right: 1em;
    box-sizing: border-box;
}

.project-info {
    margin-right: 1em;
    box-sizing: border-box;
}


    /* STARTSEITE – TABLET */

@media (min-width: 600px) and (max-width: 1024px) {

    .project {
        display: none;
    }

    .image {
        display: none;
    }

    .project-mobile-container {
        display: none;
    }

    .project-tablet-container {
        display: grid;
        grid-template-columns: 30% 25% 19.5% 19.5%;
        position: relative;
        text-decoration: none;
        overflow: hidden;
        column-gap: 1em;
        row-gap: 1em;
        font-size: 15px;
        line-height: 1.2;
    }
}

    /* STARTSEITE – MOBIL */

@media only screen and (max-width: 600px) { 

    .project {
        display: none;
    }

    .image {
        display: none;
    }

    .project-tablet-container {
        display: none;
    }

    .project-mobile-container {
        display: grid;
        grid-template-columns: 50% 50%;
        position: relative;
        text-decoration: none;
        overflow: hidden;
        column-gap: 1em;
        row-gap: 1em;
        font-size: 15px;
        line-height: 1.2;
    }

    .project-info {
        margin-top: 0.5em;
    }
}

    /* _____________________________________________________________________*/
    /* PROJEKTSEITEN */


.container-page-flex {
    display: flex;
    flex-direction: row;
}

/* linke Seite: Text */
.left-text {
    position: absolute;
    left: 0;
    top: 3.7em;
    bottom: 0;
    right: 60%;
    overflow: hidden;
    padding: 2em;
}

.project-title-page {
    border-radius: 5px;
    border-color: black;
    border-width: 1.5px;
    border-style: solid;
    padding: 5px 7px 2px 7px;
    margin-right: 0.5em;
    width: fit-content;
    font-size: 15px;
}

.text {
    font-size: 15px;
}

/* rechte Seite: Bilder */
.right-images {
    position: absolute;
    left: 40%;
    top: 3.7em;
    bottom: 0;
    right: 0;
    overflow-y: auto;    
    padding: 2em;
}

.image-container-flex {
    display: flex;
    flex-direction: row;
    margin-bottom: 0.5em;
}

.column-left {
    width: 50%;
    margin-right: 0.5em;
}

.column-right {
    width: 50%;
    margin-left: 0.5em;
}

.images {
    object-fit: cover;
    margin-bottom: 0.6em;
}

.image-m {
    height: 44.6em;
}

.image-sm {
    height: 37em;
}

.image-s {
    height: 22em;
}

.image-long {
    height: 14em;
}

.next-project {
    text-align: right;
}

.images-contain {
    object-fit: contain;
    margin-bottom: 0.6em;
    height: auto;
}

.border {
    border-color: black;
    border-width: 2px;
    border-style: solid;
}

    /* PROJEKTSEITEN – TABLET */

@media (min-width: 600px) and (max-width: 1024px) {


    .image-container {
        margin-top: 17px;
        width: 100%;
        overflow: hidden;
        display: grid;
        grid-template-columns: 42% auto;
        grid-template-rows: auto;
        column-gap: 1.5em;
        row-gap: 1.4em;
    }

    .image-container-flex {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5em;
    }

    .left-text {
        overflow: visible;
    }

    .right-images {
        overflow-y: visible;
    }

    .column-left {
        width: 100%;
    }

    .column-right {
        width: 100%;
        margin-left: 0;
    }

    .image-tablet {
        height: 20em;
    }

    .images-tm-contain {
        object-fit: contain;
        height: auto;
    }    

    .image-long {
        height: 10em;
    }

    .next-project {
        margin-top: 1em;
        margin-bottom: 1.5em;
    }

}

    /* PROJEKTSEITEN – MOBIL */

@media only screen and (max-width: 600px) {

    .image-container-flex {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5em;
    }

    .column-left {
        width: 100%;
        margin-right: 1em;
    }

    .column-right {
        width: 100%;
        margin-right: 1em;
        margin-left: 0;
    }

    .image-tablet {
        height: 20em;
    }

    .image-long {
        height: 10em;
    }

    .images-tm-contain {
        object-fit: contain;
        height: auto;
    }  

    .container-page-flex {
        display: flex;
        flex-direction: column;
    }

    .left-text {
        position: relative;
        top: 3.7em;
        bottom: 0;
        overflow: hidden;
        padding: 0;
    }

    .right-images {
        position: relative;
        top: 3.7em;
        bottom: 0;
        right: 0;
        left: 0;
        overflow-y: auto;    
        padding: 1em 0 0 0;
    }

    .next-project {
        margin-top: 0.5em;
        margin-bottom: 1.5em;
        text-align: left;
    }
    
}

    /* _____________________________________________________________________*/
    /* INFO-SEITE */

.info {
    margin-top: 17px;
    margin-right: 40%;
}

b {
    font-weight: 700;
}

.info-container {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 1.5em;
    width: 100%;
    overflow: hidden;
}

.info-grid1 {
    overflow: hidden;
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}

    /* INFO-SEITE – MOBIL */

@media only screen and (max-width: 600px) {
    .info {
        margin-top: 17px;
    }
    
    b {
        font-weight: 700;
    }
}

    /* _____________________________________________________________________*/
    /* IMPRESSUM-SEITE */

.impressum {
    padding: 5em 2em 2em 2em;
}

    /* IMPRESSUM – TABLET */

@media (min-width: 600px) and (max-width: 1024px) {

    .impressum {
        padding: 4em 2em 2em 0em;
    }
}

    /* IMPRESSUM – MOBIL */

@media only screen and (max-width: 600px) {
    
    .impressum {
        padding: 4em 2em 2em 0em;
    }
}