/* Allgemein */


@font-face {
    font-family: 'moon';
    src: url('aboutMe/projects/fonts/moon_regular.otf');
}

* {
    margin: 0;
    padding: 0;
    font-family: moon, "Times new roman";
    box-sizing: border-box;
}

body {
    background-color: black;
}

#wrapper {
    width: 1000px;
    max-width: 90%;

    margin: 0 auto;
    overflow: hidden;
}

/* TILE */
.tile {
    width: 45%;
    float: left;
    background-color: rgba(255,255,255,0.4);
    border: 4px solid #000000;
    margin-top: 10px;
    margin-left: 2.5%;
    margin-right: 2.5%;
    border-radius: 16px;
}

.tile a {
    color: #0050c0;
    text-decoration: underline;
    cursor: pointer;
}

.tile a:hover, h2:hover {
    color: #ffa040;
    text-decoration: none;
}

.tile p {
    margin-left: 5%;
}

.tile img {
    border-radius: 16px;
    width: 90%;
    margin: 5%;
    margin-bottom: 0;
}

/* LONG TILE */
.longtile {
    width: 95%;
    float: left;
    background-color: rgba(255,255,255,0.4);
    border: 4px solid #000000;
    margin-top: 10px;
    margin-left: 2.5%;
    margin-right: 2.5%;
    border-radius: 16px;
}

.line {
    width: 95%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 155px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 10px;
}

#header {
    width: 95%;
    margin: auto;
    margin-top: 20px;
    margin-left: 30px;
    height: 30px;
}

#header a {
    color: white;
    font-size: x-large;
}

.longtile img {
    border-radius: 10px;
    width: 15%;
    float: left;
    margin: 10px;
    border: 2px solid #000000;
}

.longtile h2 {
    padding-top: 60px;
}

.longtile a {
    color: blue;
}

.longtile a:hover {
    color: #ffa040;
    text-decoration: none;
}


#spacer {
    height: 70px;
    float: left;
    width: 100%;
}

/*     ANIMATED STAR BACKGROUND     */

#starAnimation {
    position: fixed;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index:-1;
}

/*     FOOTER     */

#footer {
    overflow: hidden;
    height: 60px;
    bottom: 0;
    width: 1000px;
    max-width: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: fixed;
    text-align: center;
    align-self: center;
    box-sizing: border-box;
    font-size: large;
    backdrop-filter: blur(8px);
}

#footer h3 {
    color: #ffffff;   
}

#footer a {
    color: blue;
}

#footer a:hover {
    color: #ffa040;
    text-decoration: none;
}

#kontakt {
    float: left;
    margin-left: 30px;
    color: white;
}

#impressum {
    float: right;
    cursor: pointer;
    margin-right: 30px;
}

/*     SCROLLBAR     */

::-webkit-scrollbar {
    width: 15px;
}
  
::-webkit-scrollbar:vertical {
    height: 3px;
}
  
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background: transparent;
}
  
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(38, 0, 255, .4), rgba(204, 0, 255, .4));
    /*box-shadow:-1000vmax -1000vmax 0px 1000vmax orange;*/
}
  
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, rgba(38, 0, 255, 1), rgba(204, 0, 255, 1));
}
  
::-webkit-scrollbar-thumb:active {
    background: #ffa040;
}

