/* Farben:
	dunkelblau: #1E398F
	hellblau: #0068B4
	grau: #717776
	rot: #D32F2F*/
	
body {
	color: #D32F2F;
	font-family: "Open Sans", sans-serif;
}

#header {
	display: flex;
    align-items: center;
    justify-content: space-between; /* links / rechts */
    font-size: x-large;
	color: #1E398F;
}

#logo {
	width: 200px;
    height: 80px;
	background-image: url("../images/rpi_signet.svg");
	background-repeat: no-repeat;
	padding-left: 120px;
	padding-top: 30px;
	font-weight: 700;
}

#headermenu {
    display: flex;
	padding-right: 50px;
}

#headermenu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
	font-weight: 700;
}

#headermenu ul li a {
    text-decoration: none;
	color: #1E398F;
	letter-spacing: 0.1em;
}

#headermenu ul li a:hover {
    color: #0068B4;  
}

#welcome {
	color: #1E398F;
	font-size: 60px;
	font-weight: 700;
	margin-left: 50px;
    margin-top: 50px;
}

#cardbox {
	padding-left: 50px;
    padding-right: 50px;
	padding-top: 50px;
}

#cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.card {
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
	text-align: center;
	color: #1E398F;
}

.card h3 {
    font-weight: 700;
	font-size: 26px;
}

.card p {
    color: #0068B4;
	font-size: 22px;
}

#content {
	margin: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
}