

html{
    scroll-behavior: smooth;
    height: 100%;
}


body {
    font-family: "Arial";
    font-style:normal;
    font-weight:400;
    height:100%;
    width:100%;
    background-color: #FFFFFF;
    margin:0;
    color: white;
}

#navleiste{
    width:94%;
    height:8vh;
    padding-left: 3%;
    padding-right: 3%;
    background-color: #FFFFFF;
    color: white;
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap:2vw;
}

#logo{
    display:flex;
    justify-content: center;
    align-items: center;
    height:100%;
    width:auto;
}

#kontaktlinks{
    display:flex;
    justify-content:end;
    align-items: center;
    height:100%;
    width: 80%;
    flex-direction: row;
    gap:2vw;
}


.navlogo{
    height:60%;
    width:auto;
}
.navlogo:hover{
    cursor: pointer;
}

#telnr{
    display: flex;
    justify-content: center;
    align-items: center;
    color:#424242;
    font-size: calc(2vw + 2vh);
    font-weight: 550;
}



main{
    width:100%;
    height:85vh;
    overflow-y:auto;
    display:flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    transition: 142ms all ease;
    padding-top:4vh;
    padding-bottom:4vh;
    background-image: linear-gradient(#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#DDDDDF);
    box-shadow: 0 10px 10px -10px inset #848484;
}

footer{
    height:3vh;
    width:100%;
    background-color: #BBBBBB;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:2vw;
    color:#424242;
    font-size: 2vh;
}

footer div:hover{
    cursor: pointer;
}


#oeffnungszeiten{
    width: 80vw;
    text-align: center;
    color:#242424;
    font-size:calc(1vw + 1vh);
    font-weight:500;
    margin-bottom: 2vh;
}


#ueberschrift{
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width:74vw;
    padding-left: 5vw;
    padding-right: 5vw;
    color:#141212;
    font-size:calc(5vw + 3vh);
    font-weight:650;
    letter-spacing:1vw;
    box-shadow:0 10px 10px #DDDDDD,42px 0 10px -20px inset #00BB00BB,-42px 0 10px -20px inset #FF0000BB;
    border-radius:1vh;
    margin-bottom: 3vh;
}

#istmomentan{
    text-align: center;
    color:#424242;
    font-size:2vh;
    font-weight:400;
    letter-spacing:0.5vh;
}

#geoeffnet{
    font-size:calc(1vw + 3vh);
    font-weight:550;
    color:#FF2828;
    letter-spacing:0.8vh;
    box-shadow:0 5px 20px #FFDDDD;
    padding-left:3vh;
    padding-right:2vh;
    border-radius:1vh;
}

#infotext{
    margin-top: 2vh;
    width:66%;
    max-width: 400px;
    height:10vh;
    font-size:calc(1vw + 1.5vh);
    font-weight:530;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
    color:#284228;
}



#eissorten{
    display:flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    width:90%;
    height:fit-content;
    gap:1vw;
    row-gap: calc(2vw + 2vh);

}

#eissortenueberschrift{
    margin-bottom: 2vh;
    margin-top: 8vh;
    font-size: 3.2vh;
    font-weight: 550;
    color:#282828;
}

.eissorte{
    display:flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width:38vw;
    height:38vw;
    max-width: 200px;
    max-height: 200px;
    border:1px solid #848484;
    border-radius: calc(12px + 1.2vh);
    box-shadow: 0 0 10px #BBBBBB;
    cursor: pointer;
    transition: 82ms all ease;
    
}
.eissorte:hover{
    box-shadow: 0 0 20px #BBBBBB;
}

.eissorte_bild{
    width: 90%;
    height: auto;
    max-height: 75%;
}
.eissorte_bild img{
    width:100%;
    height: 100%;
    border-radius: calc(5px + 0.8vh);
}

.eissorte_name{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #424242;
    font-size: calc(10px + 1vh);
    font-weight: 480;
    letter-spacing: 0.2vw;
}

.eissorte_text{
    display:none;
    justify-content: center;
    align-items: center;
    color: #848484;
    font-size: 2vh;
    font-weight: 420;
    width: 80%;
}

.eissorte_isda{
    display: none;
    justify-content: center;
    align-items: center;
    width:fit-content;
    height:4vh;
    gap:3vw;
    margin-bottom:2vh;
}

.isdapunkt, .isnichtdapunkt{
    width:calc(1vw + 1vh);
    height:calc(1vw + 1vh);
    border-radius: 50%;
    background-color: #00BB00;
    box-shadow: 0 0 5px #00BB00;
}

.isnichtdapunkt{
    background-color: #DD1212;
    box-shadow: 0 0 5px #DD1212;
}

.isdatext{
    font-size: 2vh;
    color:#646464;
}