@charset "utf-8";

:root{
    --background: #e8e9e7;
    --main-color1: #ffffff;
    --main-color2: #efefefff;
    --main-color3: #1c8b52ff;
    --select: #f1f1f1;
    --font-1: Century Gothic;
    --bubble1: #dbe6d6;
    --bubble2: #d9e8eb;
}
*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
    scroll-behavior: smooth;
    overflow: hidden;
}
body{
    background-color: var(--main-color2);
}
#staengel, #blattlinks, #blattrechts{
    position: absolute;
    height: 14em;
    z-index: 5;
}
#staengel{
    bottom: -2em;
    left: 50%;
    transform: translateX(-50%);
}
#blattrechts{
    bottom: 150px;
    left: 50%;
    transform: translateX(calc(-50% + 80px));
    cursor: pointer;
    transition: .2s;
}
#blattrechts:hover{
    transform: rotate(10deg);
    filter: brightness(1.15);
}
#blattlinks{
    bottom: 100px;
    height: 8em;
    left: 50%;
    transform: translateX(calc(-50% - 80px));
    cursor: pointer;
    transition: .2s;
}
#blattlinks:hover{
    filter: brightness(1.15);
    transform: rotate(-10deg) translateX(-160px) translateY(-26px);
}
.bubble{
    border-radius: 100px;
    position: absolute;
}
.bubble:nth-child(2){
    background-color: var(--bubble1);
    height: 20vh;
    width: 20vh;
    top: 30vh;
    left: 50vw;
}
.bubble:nth-child(3){
    background-color: var(--bubble2);
    height: 5vh;
    width: 5vh;
    top: 50vh;
    left: 20vw;
}
.bubble:nth-child(4){
    background-color: var(--bubble1);
    height: 15vh;
    width: 15vh;
    top: 80vh;
    left: 70vw;
}
.bubble:nth-child(5){
    background-color: var(--bubble2);
    height: 4vh;
    width: 4vh;
    top: 40vh;
    left: 80vw;
}
.bubble:nth-child(6){
    background-color: var(--bubble1);
    height: 4vh;
    width: 4vh;
    top: 60vh;
    left: 79vw;
}
.bubble:nth-child(7){
    background-color: var(--bubble2);
    height: 5vh;
    width: 5vh;
    top: 70vh;
    left: 50vw;
}
.bubble:nth-child(8){
    background-color: var(--bubble1);
    height: 20vh;
    width: 20vh;
    top: 53vh;
    left: 30vw;
}
.bubble:nth-child(9){
    background-color: var(--bubble2);
    height: 15vh;
    width: 15vh;
    top: 26vh;
    left: 64vw;
}
.bubble:nth-child(10){
    background-color: var(--bubble1);
    height: 10vh;
    width: 10vh;
    top: 24vh;
    left: 32vw;
}
.bubble:nth-child(11){
    background-color: var(--bubble2);
    height: 10vh;
    width: 10vh;
    top: 34vh;
    left: 39vw;
}
.bubble:nth-child(12){
    background-color: var(--bubble1);
    height: 20vh;
    width: 20vh;
    top: 29vh;
    left: 13vw;
}
.bubble:nth-child(13){
    background-color: var(--bubble2);
    height: 15vh;
    width: 15vh;
    top: 79vh;
    left: 76vw;
}
.bubble:nth-child(14){
    background-color: var(--bubble1);
    height: 4vh;
    width: 4vh;
    top: 60vh;
    left: 12vw;
}
.bubble:nth-child(15){
    background-color: var(--bubble2);
    height: 25vh;
    width: 25vh;
    top: 21vh;
    left: 23vw;
}
.bubble:nth-child(16){
    background-color: var(--bubble1);
    height: 10vh;
    width: 10vh;
    top: 44vh;
    left: 68vw;
}
.bubble:nth-child(17){
    background-color: var(--bubble2);
    height: 20vh;
    width: 20vh;
    top: 5vh;
    left: 59vw;
}
@keyframes bubbles{
    0%{bottom: -20vh};
    100%{bottom: 200vh};
}
#titel{
    height: 6vw;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: 5vh;
    z-index: 5;
}
p{
    color: var(--main-color3);
    letter-spacing: 4.38px;
    position: absolute;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
    font-size: 3vw;
    top: 20vh;
    font-family: var(--font-1);
    z-index: 5;
}
#erstelle:hover, #suche:hover{
    transform: scale(1.1);
}
#erstelle{
    left: 20vw;
}
#suche{
    right: 20vw;
}
#pfeilrechts, #pfeillinks{
    z-index: 5;
    position: absolute;
    height: 50vh;
    bottom: 10vh;
}
#pfeilrechts{
    left: 20vw;
}
#pfeillinks{
    transform: scaleX(-1);
    right: 20vw;
}
#erstelle, #suche{
    background-color: var(--main-color3);
    color: var(--main-color1);
    border-radius: 100px;
    padding: .5em;
    width: max-content;
    font-family: var(--font-1);
    text-decoration: none;
    font-size: 2.5em;
    position: absolute;
    top: 45vh;
    z-index: 6;
    white-space: nowrap;
}
@media (max-width: 1300px){
    
    #staengel, #blattrechts, #blattlinks{
        display: none;
    }
}
@media (max-width: 850px){
    #pfeilrechts, #pfeillinks{
        display: none;
    }
}
@media (max-width: 700px){
    #suche{
        top: 60vh;
    }
    #erstelle{
        top: 35vh;
    }
    #suche, #erstelle{
        left: 50%;
        transform: translateX(-50%);
    }
    #suche:hover, #erstelle:hover{
        transform: translateX(-50%) scale(1.1) ;
    }
}

