
@font-face {
    font-family: 'Waterblaster';
    src: url('../assets/fonts/WaterBlaster.otf');
}

body {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

#canvas {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

#loadingscreen {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #4FE0D4;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#loadingText {
    font-family: 'Waterblaster';
    font-size: 10em;
    color: #944543;
}

#googleMain {
    position: absolute;
    visibility: hidden;
}

#projectWrapper {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
}

.projectWindow {
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 10%);
    z-index: 2;
    position: absolute;
    left: 45%;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

.projectHeader {
    left: 20%;
    width: 85%;
    margin-top: 2%;
    margin-bottom: 2%;
    position: relative;
    font-size: 4em;
}

.projectPic {
    width: 46%;
    margin: 1%;
    box-shadow: 5px 5px 2px rgb(209, 209, 209);
}

.projectVid {
    width: 100%;
    box-shadow: 5px 5px 2px rgb(209, 209, 209);
}

.scroller {
    left: 20%;
    width: 70%;
    position: relative;
    overflow-y: scroll;
    height: 70%;

    /*Firefox scrollbar*/
    scrollbar-color: #888 #ffffff;
    scrollbar-width: thin;
}

/*Chrome scrollbar*/
.scroller::-webkit-scrollbar {
    width: 10px;
}
  
.scroller::-webkit-scrollbar-track {
    background: #ffffff; 
}
   
.scroller::-webkit-scrollbar-thumb {
    background: #888; 
}
  
.scroller::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
/*ende Chrome scrollbar*/

.projectText {
    font-size: 1.5em;
    text-align: left;
}

.linkWrapper {
    text-align: left;
}

.link {
    text-align: center;
    border: #4FE0D4;
    border-width: 5px;
    border-radius: 15px;
    margin: 0;
    margin-top: 50px;
    border-style: solid;
    padding: 5px;
    text-decoration: none;
    font-size: 1.5em;
    color: black;
}

.link:hover {
    color: black;
    background-color: #4FE0D4;
}

.link:active {
    color: black;
}

.closeBtn {
    margin-top: 2%;
    left: 20%;
    position: relative;
    border: none;
    background-color: rgb(0,0,0,0);
    background-image: url('../assets/images/close_Btn.svg');
    width: 58px;
    height: 58px;
}

.closeBtn:hover {
    cursor: pointer;
    background-image: url('../assets/images/close_Btn_Hover.svg');
}

#score {
    position: absolute;
    text-align: center;
    width: 5%;
    bottom: 4%;
    left: 4%;
    font-size: 6em;
    color: #944543;
}

#scoreText {
    margin: 0px;
    font-family: 'Waterblaster';
}

#help {
    position: absolute;
    font-family: 'Waterblaster';
    width: 100%;
    top: 25%;
    text-align: center;
    font-size: 4em;
    color: #444;
    visibility: hidden;
}

#helpText {
    margin: 0px;
}
