html {
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

body {
    background-color: rgb(255,255,255);
    margin: 0;
    padding: 0;
    min-height: 100vh;
	
}
p, li {
	color:rgb(130,0,30);
}
.header-image {
    width: 100%;
    height: auto;
}

nav {
    background-color: rgb(130,0,30); /* Dunkelrot */
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 13px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    justify-content: space-around;
}

nav ul li {
    margin: 0;
}

a {
    color: rgb(255,255,255); /* Weiß */
    text-decoration: none;
}

a:hover {
    color: rgb(244,235,226); /* Beige beim Hover */
}

article {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-text {
    max-width: 60%;
}

.profile-image-container {
    border: 5px solid rgb(130,0,30);
    padding: 5px;
    background-color: white;
}

.profile-image {
    width: 150px;
    height: auto;
}

h2, h3, h4 {
    color: rgb(130,0,30); /* Dunkelrot */
}

h1 {
    font-size: 70px;
    margin-bottom: 10px;
}

h3 {
    font-size: 30px;
    margin-top: 0;
}
h4 {
	font-size: 30px;
	margin-top: 0;
}
.bold{
	font-weight:bold;
}
#contact {
	line-height: 1.0;
}
