::selection {
    background-color: black;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: "Raleway";
    font-weight: 400;
    margin: 0;
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

.start-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    /* viewport height - fenster höhe in prozent */
}

.titel {
    display: flex;
    background-color: white;
    color: rgb(0, 0, 0);
    flex-grow: 1;
    align-items: end;

}

h1,
h2,
h3 {
    /* display: flex; */
    font-family: "Ashley Script MT Std";
    text-transform: uppercase;
    font-size: 130px;
}

h2 {
    font-size: 50px;
    /* padding-bottom: 5px; */
}

h3 {
    font-size: 30px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    #email {
        display: none;
    }

    nav {
        font-size: x-large;
    }
}

@font-face {
    font-family: "Ashley Script MT Std";
    src: url("/fonts/AshleyScriptMTStdRg.TTF");
}

nav {
    display: flex;
    /* gap: 40px; */
    background-color: rgb(255, 255, 255);
    padding: 15px;
    position: sticky;
    /* width: 100%; */
    top: 0;
    left: 0;
    z-index: 1000000;
}

nav a {
    color: black;
    text-decoration: none;
    transition: transform 0.4s, color 1s;
    transition-timing-function: ease-in-out;
    transform-origin: 0 center;
}

nav a:hover {
    /* font-size: larger; */
    /* transform: scaleY(3000%); */
    transform: scale(110%);
    color: rgb(89, 6, 131);
}

.kapitelTitelContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.rotate {

    transition: transform 0.6s;
    transition-timing-function: ease-in-out;
    max-width: 25vh;
    height: auto;
    margin: 50px;
    /* margin-top: 100px; */
}

.rotate:hover {
    transform: rotate(5deg);
}

.links {
    display: flex;
    flex-grow: 1;
    justify-content: space-evenly;
    font-family: "Ashley Script MT Std";
    font-size: xx-large;
}

#email {
    display: flex;
    align-self: center;
    font-size: large;
}

.container {
    display: flex;
    position: relative;
    justify-content: flex-end;
    padding-right: 100px;
    padding-bottom: 50px;
    padding-top: 50px;
    background-attachment: fixed;
    position: sticky;
}

.portrait-container {

    position: relative;
}

.portrait-container img {
    display: block;
    max-height: 40vh;
}

.portrait-container:hover .overlay {
    opacity: 1;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 15px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;

}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: rgb(255, 255, 255);
    /* color: black; */
    margin-top: 50px;
}

h2,
h3,
p {
    color: black;
    margin-bottom: 0px;
}


.infoblock {
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-around; */
    padding-bottom: 20px;
    max-width: 60vh;
}

.splide__slide img {
    /* width: 30vw; */
    width: 100%;
    /* height: auto; */
    height: 100%;
    object-fit: cover;
    /* margin:10px; */
}

.splide__slide {
    transition: all .5s ease-in-out;
    opacity: .7;
}

.splide__slide.is-active {
    transform: scale(110%);
    opacity: 1;
}

/* .splide {
    background-color: white;
} */

.splide__track {
    overflow: visible !important;
}

.splide-container {
    background-color: rgb(255, 255, 255);
    padding-top: 50px;
    padding-bottom: 30vh;
    overflow: hidden;
}

.space {
    padding-top: 60vh;
    background-color: white;
}

#überschrift {
    background-color: white;
    margin: 0px;
}

.footer {
    padding: 20px;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.collumnf {
    display: flex;
    flex-direction: column;
    
}

.collumnf p {
    font-size:small;
    color: rgb(186, 186, 186);
}

.collumnf a {
    text-decoration: none;
    color: rgb(186, 186, 186);
}

.collumnf a:hover {
    text-decoration: underline;
}

#inactive {
    color: rgb(103, 103, 103);
}

#home {
    width: 30px;
}