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

a {
    color: currentColor;
    text-decoration: none;
}
html {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 00.025rem;

    overflow-x: clip;
}

/* If the screen size is 1280px or less, set the font-size of <div> to 30px */
@media only screen and (max-width: 1280px) {
    html {
      font-size: 14px;
    }
  }

body{
    width: 100%;
    height: 100%;

    overflow-x: clip;
}

a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
}

h1, h2, h3, p {
    font-size: 1rem;
/*    font-weight: 400; */ 
    line-height: 1.2rem;
}
h1, p {
    margin-bottom: 1rem;
}
h2 {
    font-weight: bold;
}
nav {
    display: inline-block;
    flex: inherit;
}
header a:hover {
    color: black;
}
/*
.active {
    color: blueviolet;
}
*/
header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    z-index: 55;
    background-color: white;
    border-bottom: #0d0d0d 1px solid;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.meta {
    position: fixed;
    top: 3.6rem;
    width: 100%;
}

.info {
    padding: 0.5rem;
}

.about {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/*

.menu {
    display: flex;
    justify-content: space-between;
}

.menu a {
    margin-left: 1rem;
}
*/
.menu a::after {
    content: ', ';
    color: black;
}
.menu a:last-child:after {
    content: '';
}

.w1_1 {
    width: 99%;
    text-align:left;
}

.w1_2 {
    width: 50%;
    text-align:left;
}

@media screen and (max-width: 690px) {
    .w1_2 {
        width: 100%;
    }
}

.w1_3 {
    width: 33.33%;
}

.w2_3 {
    width: 66.66%;
}
img {
    margin-right: 0;
    padding: 0;
}

.mb_0_5 {
    margin-bottom: 0.6rem;
}
.mb_1 {
    margin-bottom: 1.2rem;
}
.mb_3 {
    margin-bottom: 3.6rem;
}


.mt_1 {
    margin-top: 1.2rem;
}
.mt_2 {
    margin-top: 2rem;
}
.mt_3 {
    margin-top: 3rem;
}

.menu li {
    display: inline;
    list-style-type:none;
}

.related_projects li {
    list-style-type:circle;
}

footer {
    bottom: 1.2rem;
    padding: 0.5rem;
/*  position: fixed;
    border-top: lightgray .1rem solid; */
}

.fixed {
    position: fixed;
}

.display-none {
    display: none;
}

.grey {
    color: gray;
}
/*
.grey::before {
    color: gray;
    content: "_ ";
}
*/

.col_2 {
    columns: 2;
    column-gap: 1.2rem;
    hyphens: auto;
}

/* ---- Komponenten --- */


.btn_nav {
    display: inline-block;
    border: 1px solid black;
    border-radius: 2.4rem;
    padding: 0.6rem 1.2rem;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, 
                transform 150ms ease;
/*    -webkit-appearance: none;
    -moz-appearance: none; */
}

/* ---- SLIDER HOME --- */


/* Fullscreen slider */
.slider {
    height: calc(100vh - 2rem);
    height: 100svh; /* mobile-safe */
    overflow: hidden;
    margin-top: 2rem;

    width: 100%;
    max-width: 100%;

}

/* Make slider structure fill height */
.slider .tns-outer,
.slider .tns-inner,
.slider .tns-slider,
.slider .tns-item,
.slider figure {
    height: 100%;
}

#center-mw {
    height: 100%;
}

.slider .tns-outer {
    width: 100%;
}

/* Image covers entire viewport */
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}












@media screen and (max-width: 690px) {
    .slider img {
        height: auto;
        object-fit: none;
    }
}
