body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    /*overflow: hidden !important;*/
    overflow-x: hidden;
    overflow-y: overlay;
    background-color: black;
}

html {
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 13px;
}

img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
 }

.display {
    padding-top: 30vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 500ms;
    /* background-image: url(https://preview.redd.it/0bb6dqsiab451.gif?s=b0c65596a54a30708da26669da6e79abf3be1680); */
    /* background-image: url(https://cdn.emelinhabibovic.de/images/freiburg_24022022_ukraine_st.webp); */
    /*background-image: url(https://cdn.emelinhabibovic.de/images/20210812_174848.jpg);*/
    background-image: url(https://cdn.emelinhabibovic.de/images/20210806_195252.jpg?s);
    background-blend-mode: color;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.display.loaded {
    background-color: #00000070;
}

.display.loading {
    background-image: url(https://cdn.emelinhabibovic.de/images/ios-spinner.svg);
    background-size: 30px;
    background-position-y: 40%;
    background-color: #e9e9e9;
    background-blend-mode: unset;
    transition: 0ms;
}

.display.hidden {
    opacity: 0;
    transform: scale(1.5);
    color: transparent;
}

.display.hidden * {
    opacity: 0;
    pointer-events: none;
}

.link-button {
    text-decoration: none;
    color: white;
    width: 170px;
    background-color: #00173399;
    padding: 5px;
    text-align: left;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-repeat: no-repeat;
    padding-left: 35px;
    background-size: 25px;
    background-position-y: center;
    background-position-x: 3px;
    border: 1px solid white;
    margin-top: 10px;
}

.display-2 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px;
    background: #1f0031;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px #7a0089 solid;
    transition: 200ms;
}

.display-2.hidden {
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.absolute-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #00000069;
    z-index: 2;
    padding: 1px;
    font-family: sans-serif;
    text-align: center;
    border-top: 1px solid #ef00ff8a;
    font-size: 12px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.youtube-logo {
    user-select: none;
    pointer-events: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1;
    background: white;
    opacity: 0.0;
    background-position: center;
    background-repeat: no-repeat;
}

.youtube-logo.active {
    animation-name: ytLogoAnim;
    animation-duration: 2s;
    background-image: url(https://media1.giphy.com/media/13Nc3xlO1kGg3S/giphy.gif);
}

@keyframes ytLogoAnim {
    0%,100%  {
        opacity: 0.0;
    }

    20%,60%{
        opacity: 1;
    }
}

.link-button.ig {
    background-image: url(https://cdn.emelinhabibovic.de/images/ig_block.png);
}

.link-button.gh {
    background-image: url(https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png);
}

.youtube-player {
    position: fixed;
    top: 0;
    z-index: 0;
    pointer-events: none;
    height: 100%;
    width: 100vw;
    transform: scale(1.5);
}

@media (max-width: 740px) {
    .youtube-player {
        transform: scale(2.3);
    }
}

@media (max-width: 460px) {
    .youtube-player {
        transform: scale(4);
    }
}

@media (max-width: 350px) {
    .youtube-player {
        transform: scale(3.5);
    }
}

@media (min-aspect-ratio: 16/9) {
    video {
        width: 100%;
        height: auto;
    }
  }


@media (min-aspect-ratio: 1/1) {
    .display {
        background-image: url(https://cdn.emelinhabibovic.de/images/20210806_195252.jpg?s);
    }
}
* {
    box-sizing: border-box;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: 5px;
    scrollbar-color: #000000b8 #ffffff00;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff00;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #000000b8;
    border-radius: 10px;
  }

  /*https://codepen.io/stephenpaton-tech/full/JjRvGmY*/