/* 
	***************************
	*** Code by: A. Elvers  ***
	*** Date: 03.06.2025    ***
	***				        ***
	*** Filename: style.css ***
	***************************
*/


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}
header {
    background: #222;
    color: white;
    padding: 1em;
    text-align: center;
}
/*header h1 {
	font-size: 2rem;
	color: #6e8efb;
	margin: 0.5em 0;
}*/

nav ul.nav-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
	padding: 0;
	list-style: none;
	margin: 1em auto;
}

nav ul.nav-buttons li a {
	display: flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.6em 1.4em;
	background: linear-gradient(135deg, #1fd1f9, #00c2cb);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav ul.nav-buttons li a:hover {
	transform: scale(1.05);
	background: linear-gradient(135deg, #00c2cb, #1fd1f9);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    nav ul.nav-buttons {
        flex-direction: column;
        align-items: center;
    }
}
footer {
    background: #eee;
    padding: 1em;
    text-align: center;
    margin-top: 2em;
}

.welcome {
    max-width: 1100px;
    margin: 2em auto;
    padding: 2em;
    background: white;
    border-radius: 1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    line-height: 1.6;
}

.welcome h1 {
    color: #6e8efb;
    font-size: 2em;
    margin-bottom: 1em;
}

.welcome p {
    margin-bottom: 1em;
    color: #333;
    font-size: 1.1em;
}
