:root {
    --main-yellow: #f5dc00;
    --main-yellow-light: #ffe600;
    --main-blue:hsl(190, 54%, 55%);
    --main-blue-light:hwb(190 49% 15%);
    --main-blue-lighter:#aaf1ff;
    --main-pink-transparent: #ffb6c100;
    --main-pink: #ffb6c1;
    --light1: #f0efeb;
    --light2: #fafafa;
    --lighthighlight: rgb(244,243,240);
    --dark1: #121217;
    --gray1: rgb(76,77,75);
    --light1-blur: rgba(240,239,235, 0.5);
    --light2-blur: rgba(250,250,250, 0.8);
    --borderdark: rgba(15,14,12,0.25);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --success: rgb(88, 129, 25);
    --error: rgb(211, 38, 38);
    --error-blur: rgba(233, 51, 51, 0.75);
}
html, body{
    margin: 0;
    font-family: "Inter";
    background-color: var(--dark1);
    color: white;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: auto;
    scroll-behavior: smooth;
    min-width: calc(100vw - (100vw - 100%));
}
.page-container{
    position: relative;
    min-height: 100vh;
    min-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
}
button{
    user-select: none;
    caret-color: transparent;
}
button.primary{
    position: relative;
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: var(--dark1);
    padding: 9px 20px;
    box-shadow: rgba(245, 221, 0, 0.2) 3px 3px 10px;
    cursor: pointer;
    transition: .2s;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
button.primary:hover{
    box-shadow: rgba(245, 221, 0, 0.5) 3px 3px 15px;
}
button.primary img{
    width: 25px;
}
button.secondary{
    position: relative;
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: var(--dark1);
    color: white;
    padding: 9px 20px;
    cursor: pointer;
    transition: .2s;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
button.secondary:hover{
    box-shadow: rgba(255,255,255, 0.25) 0px 0px 20px;
}
button.secondary img{
    width: 25px;
    filter: invert(1);
}

/* ///////////////////// HEADER ////////////////// */
/* ///////////////////// HEADER ////////////////// */
/* ///////////////////// HEADER ////////////////// */

header{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    padding: 15px 25px;
    border-bottom: var(--border);
    backdrop-filter: blur(10px);
    border: none;
}

header .left{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
header .left a{
    display: block;
    width: 35px;
    height: 35px;
    background: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    border-radius: 10px;
    cursor: default;
}
header .left span, header .right span{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 18px;
    cursor: default;
}
header .right span{
    text-align: right;
}
@media screen and (max-width:500px) {
    header .right span{
        width: 120px;
    }
}

header .right{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
header .right a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
@media screen and (max-width:720px) {
    header .right a{
        display: none;
    }
}
header .right a:hover{
    color: var(--main-yellow-light);
}
@media screen and (min-width:721px) {
    header .right button::after{
        content: "Kontaktiere mich!";
    }
}

/* ///////////////////// FOOTER ////////////////// */
/* ///////////////////// FOOTER ////////////////// */
/* ///////////////////// FOOTER ////////////////// */

footer{
    position: absolute;
    bottom: 0;
    min-width: 100%;
    min-height: 75px;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 99;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: "Inter";
    font-weight: 500;
    text-transform: uppercase;
    color: gray;
}

footer a, footer span{
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: inherit;
    font-size: 10px;
    letter-spacing: 1px;
    text-align: center;
}

.underline-animation::after {
    content: '';
    position: absolute;
    width: 95%;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: gray;
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.underline-animation:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
}