* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
} 

h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
    color: blanchedalmond;
    padding: 20px 0;
    font-size: 60px;

}
h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: blanchedalmond;
    padding: 20px 0;
    font-size: 40px;

}
h3{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: blanchedalmond;
    padding: 10px 0;
    font-size: 30px;
}
h4{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: blanchedalmond;
    font-size: 25px;
}
p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}
.header{
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: green;
}
 .rand{
    margin-top: 130px;
    margin-bottom: 100px;
    }
.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}
.button{
    background-color:goldenrod;
    color: white;
    display: block;
    font-weight: bold;
    padding: 10px 25px;
    font-size: 25px;
    border-radius: 30px;
    border: 2px solid orange;  
}
.button:hover{
    background-color: white;
    color: goldenrod;
    border: 2px solid burlywood;
}
.card{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

}
.logo{
    position: absolute;
    top: 2%;
    left: 2%;
}
.article{
    font-family: Arial, Helvetica, sans-serif;
    color: blanchedalmond;
    font-size: 24px;
    padding: 10px 50px;
}
.headline{
   text-align: center;
}
.center{
    text-align: center;
}
.green{
    background-color: green;
}
.top{
    background-color:goldenrod;
    color: white;
    font-weight: bold;
    font-size: 25px;
    border-radius: 30px;
    border: 2px solid orange;
}
.einzug-left{
    padding-left: 20px;
}
/* start*/

.start{
   height: 100vh;
   width: 100%;
   background: url(images/web.jpg) no-repeat no-repeat;
    background-size: cover;
   position: relative;
   padding-top: 130px;
}
.start .content{
    position: absolute;
    top: 30%;
    left: 10%;
    
}
.start .goto{
    position: absolute;
    bottom: 10%;
    left: 40%;
    transform: translateX(-40%);
}
nav{
    height: 70px;
}
nav ul a{
    color: blanchedalmond;
    padding: 5px;
    margin: 0 8px;
    font-size: 30px;

}
nav ul a:hover{
    border-bottom: 2px goldenrod solid;

}
/*Veranstaltungen*/

.veranstaltung{

    height: 120vh;
    width: 100%;
    background: url(images/wega2.jpg) no-repeat no-repeat;
     background-size: cover;
    position: relative;

}
.veranstaltung .content{
    position: absolute;
    top: 30%;
    left: 10%;
}

/*Über uns*/
.wir{
    position: relative;
    top: 100px;
}

.wir .goto{
    position: relative;
    bottom: -100px;
    
}
/*Bilder*/
    .grid-bilder{
        grid-template-columns: repeat(2, 1fr);

    }
   
    .bilder img{
        width: 100%;
        
    }
    .bilder .button{
        font-size: 18px;
        text-align: center;
    }