@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/

*{
    font-family: 'Poppins', sans-serif;
    color: white;
}

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    background-image: url(img/background.png);
    background-size: cover;
}

.annoucements{
    width: 100%;
    display: flex;
}

.annoucements .annoucement:nth-child(odd){
    background-color: #fc0400;
}

.annoucements .annoucement:nth-child(even){
    background-color: #a9110f;
}

.annoucements .annoucement{
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    position: relative;
}

.annoucement h2{
    margin: 0;
}

.annoucements .icon-cancel{
    
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
}

.filler{
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0
}

.main{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 90vw;
    background-color: #00000063;
    backdrop-filter: blur(5px);
    padding: 40px 0px;
}

.menu{
    width: 100%;
}

.menu ul{
    display: inline-block;
    list-style-type: none;
    width: 100%;
    padding: 0;
}

.menu ul li{
    float: left;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
}

@keyframes fontup{
    from {font-size: 20px;}
    to {font-size: 25px}
    from {color: white;}
    to {color: #9ad153;}
}

.menu ul li:hover, .menu ul li a:hover{
    animation: fontup 0.5s ease normal forwards;
}

.menu ul li a{
    text-decoration: none;
}

.menu ul li a.active-page{
    color: #9ad153;
}

.menu ul li:nth-child(odd){
    width: 33%;
}

.menu ul li:nth-child(even){
    width: 34%;
}

.logo img{
    width: 185px;
    height: auto;
}

.main .logo{
    width: 100%;
    text-align: center;
}

.main .pricetags{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

table{
    width: 90%;
}

table td{
    width: 200px;
    padding: 10px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.221);
}

table th{
    width: 200px;
    padding: 10px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.221);
}

table, td, th{
    border: 1px solid white;
    border-collapse: collapse;
    font-size: 23px;
}

.footer{
    background-color: black;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.absolut{
    position: absolute;
    bottom: 0;
}

.relatiw{
    position: sticky;
    bottom: 0;
}

.footer div{
    text-align: center;
    font-weight: 400;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer div:nth-child(odd){
    width: 33%;
}

.footer div:nth-child(even){
    width: 34%
}

.kontakt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kontakt span{
    font-size: 20px;
}

.login-box{
    width: 100%;
    text-align: center;
}

.login-box input{
    background-color: #00000063;
    border: 1px solid black;
    height: 25px;
    width: 170px;
}

.login-box button{
    background-color: #00000063;
    border: 1px solid black;
}

.login-box form{
    font-size: 20px;
}

.login-box form button{
    font-size: 20px
}

.login-box form span{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.admin-pricechart{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.admin-pricechart table{
    display: inline-flex;
    justify-content: center;
}

.admin-pricechart table tr{
    width: 100%;
}

.admin-pricechart button{
    background-color: #00000063;
    border: 1px solid black;
    width: 40%;
}

.admin-pricechart input{
    background-color: #00000063;
    border: 1px solid black;
    height: 25px;
    width: 270px;
    text-align: center;
}

.map{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 120px;
}

.map iframe{
    text-align: center;
}

.gallery .bigphoto{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.gallery .bigphoto img{
    width: 680px;
    height: 510px;
}


.gallery .bigphoto h1{
    font-size: 100px;
    font-weight: 200;
}

.gallery .bigphoto h1:hover{
    cursor: pointer;
}

.gallery .photos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    place-items: center;
}

.gallery .photos img{
    width: 200px;
    cursor: pointer;
}

@media screen and (max-width: 820px) {
    .main .logo {
        width: 100%;
    }
    
    .logo img{
        width: 100px;
        height: auto;
    }   
    
    .main .pricetags{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer{
        background-color: black;
        width: 100%;
        position: relative;
        font-weight: lighter;
        margin-top: 0px;
        font-size: 10px;
    }
    
    .filler:last-child{
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        height: 100px;
    }
}