
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

/*Allgemeine Einstellungen*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252a;
}
/*Schriftart für Text*/
li, a, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
}
.logo {
    cursor: pointer;
    font-family: arial;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #892324;
}

button {
    padding: 9px 25px;
    background-color: #892324;
    border: none;
    border-radius: 50px;
    cursor: pointer; 
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: #761E1F;
}

.div1 {
width: 1000px;
height: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 250px;
text-align: center;
background-color: #892324;
border-radius: 5px ;
padding: 10px;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.11);
}

.div1 h1 {
    background-color: #892324;
}

.div1 img {
    background-color: #892324;
    width: 60px;
}
.div1 h1 {
    font-family: arial;
    color: white;
    font-size: 60px;
}

.div1 p {
    background-color: #892324;
    font-family: arial;
    font-size: 17px;
    color: white;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.div1 p a {
    background-color: #892324;
    color: black;
}

