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

body {
    font-family: 'Arial', sans-serif;
    background-color: #F7F7F7;
    color: #2C3E50;
    line-height: 1.6;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-top: 30px;
}

header img {
    width: 20%;
    max-width: 250px;
}

header h1 {
    font-size: 2.8em;
    color: #2C3E50;
    margin-top: 20px;
}

header h3 {
    font-size: 1em;
    color: red;
    margin-top: -10px;
    margin-bottom: -10px;
}

/* - NAVIGATION - */
nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
	display: inline-block;
	background-color: #3498db;
	color: white;
	padding: 15px 25px;
	text-decoration: none;
	font-size: 1.1em;
	margin: 5px;
	border-radius: 10px;
	transition: background-color 0.3s, transform 0.3s;
}

nav a:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

main {
    margin-top: 50px;
}

.hyper {
    text-align: center;
    margin-bottom: 30px;
}

.hyper a {
    font-size: 1.2em;
    background-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hyper a:hover {
    background-color: #2980b9;
}

.mid {
    text-align: center;
	color: red;
}

/* - TABELLE - */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #2980b9;
    color: white;
}

td {
    background-color: #ecf0f1;
}

tr:nth-child(even) {
  background-color: red;
}

td a {
    color: #2980b9;
    text-decoration: none;
    font-size: 19px;
    text-align: center;
}

td a:hover {
    color: #3498db;
}

/* p {
    color: #2980b9;
    text-decoration: none;
    font-size: 19px;
    text-align: center;
} */


/*
footer {
    margin-top: 50px;
    text-align: center;
}

footer a {
    color: #2C3E50;
    text-decoration: underline;
    font-size: 1.1em;
    transition: color 0.3s;
}

footer a:hover {
    color: #3498db;
} */


.media {
    margin-top: 40px;
}

.media h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: #2980b9;
}

audio, video {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border: 2px solid #2980b9;
    border-radius: 10px;
    padding: 5px;
}


.video {
    margin-bottom: 30px;
	border-radius: 10px;

}

.video h3 {
    font-size: 1.5em;
    color: #2980b9;
    margin-bottom: 10px;
    text-align: center;
}



/* -- HANDY - STYLE -- */
@media (max-width: 768px) {
    header img {
        width: 50%;
    }

    header h1 {
        font-size: 2.2em;
    }

    nav a {
        font-size: 1em;
        padding: 12px 20px;
    }

    .hyper a {
        font-size: 1em;
        padding: 10px 15px;
    }

    table {
        font-size: 0.9em;
    }

    th, td {
        padding: 12px;
    }
}

/* STYLE DIV */

.box {
	background-color: #f0f8ff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	margin: 20px auto;
	font-family: 'Arial', sans-serif;
}


.box h2 {
	color: #3498db;
	font-size: 1.5em;
	margin-bottom: 10px;
}

.box p {
	color: #444;
	font-size: 1.1em;
	line-height: 1.6;
}

.box a {
	color: #3498db;
	text-decoration: none;
	font-weight: bold;
}

/*.box hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}
*/
/*
.box {
	display: inline-block;
	background-color: #3498db;
	color: white;
	padding: 15px 25px;
	text-decoration: none;
	font-size: 1.1em;
	margin: 5px;
	border-radius: 10px;
	transition: background-color 0.3s, transform 0.3s;
}*/

.box:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}