:root {
    --platin: #f2f2f2;
    --pink: #FF619D;
    --blau: #223558;
}

body {
    background-color: var(--platin);
    font-family: "darkmode-off", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--blau);
}

.logo {
    width: 100px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 20px;
}

/*------------------------HEADER------------------------*/

header {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a {
    font-family: "darkmode-off", sans-serif;
    font-weight: 700;
    background-color: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

nav a:hover {
    color: white;
    background-color: var(--pink);
}

h1, h2 {
    font-size: 60px;
    color: var(--pink);
    text-align: center;
    margin-top: 200px;
    font-weight: 700;
    animation: unblur 1s ease-out;
}

.header-button-wrapper {
    margin-top: 50px;
}

.bigbutton {
    font-family: "darkmode-off", sans-serif;
    font-weight: 800;
    font-size: 40px;
    background-color: transparent;
    color: var(--pink);
    border: 4px solid var(--pink);
    border-radius: 30px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.bigbutton img {
    width: 80px;
    height: auto;
}

.bigbutton:hover {
    color: white;
    background-color: var(--pink)`;
}



/*------------------------MAIN------------------------*/



/*IMAGESTACK*/

.image-stack {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto; 
}

.bild-hinten, .bild-vorne, .pink-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bild-hinten {
    z-index: -1;
    width: 600px;
    height: auto;
}

.bigblur {
    width: 1200px;
} 

.bild-vorne {
    z-index: 2;
}

.mockup {
    width: 300px;
    height: auto;
    z-index: 1;
}

.pink-box, .pink-box2 {
    position: absolute;
    z-index: 1;
    width: 450px;
    height: 250px;
    background-color: var(--pink);
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pink-box2 {
    width:600px;
    height: 600px;
}

.magazin {
    width: 600px;
    height: auto;
}

.opti {
    width: 600px;
    height: auto;
}


/*------------------MAIN------------------*/

main {
    max-width: 1200px;
    margin: 0 auto;
}

h5, h3 {
    font-size: 28px;
    color: var(--pink);
    text-align: center;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    color: var(--blau);
    text-align:left;
    font-weight: 500;
    overflow-wrap: break-word;
}

.kasten p {
    color: var(--platin);
    font-weight: 600;
    font-size: 28px;
    padding: 20px 20px;
}

.container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 20px;
}

.links {
    flex: 1;
}

.rechts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rechts.centered {
    justify-content: center;
    margin-top: -150px;
}

.profilbild {
    height:600px;
    width: 600px;
    border-radius: 30px;
    object-fit: cover;
}

.kasten {
    width: 450px;
    height: 250px;
    background-color: var(--pink);
    border-radius: 30px;
}

.galerie-zeile {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.galerie-zeile img {
    flex: 1;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
}


/*------------------FOOTER----------------*/


footer {
    padding: 40px 20px;
}

.footer-container {
    background-color: var(--pink);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-spalte {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-spalte h4 {
    color: var(--platin);
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-spalte p,
.footer-spalte a {
    color: var(--platin);
    text-decoration: none;
    font-size: 16px;
    margin: 0;
}

.footer-spalte a:hover {
    text-decoration: underline;
}

/*------------------KEYFRAMES----------------*/


@keyframes unblur {
    from {
        filter: blur(10px);
        opacity: 0;
    }
    to {
        filter: blur(0px);
        opacity: 1;
    }
}