/* Allgemeines & Resets
------------------------*/

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

	html {
		color: #000000;
		font-size: 20px;
		font-family: 'Manrope', sans-serif;
		background-color: #62b1c4;
	}

	section {
		position: relative;
	}

/* Container
-------------*/

    .container {
    	box-sizing: border-box;
    }

	.container {
		position: relative;
		width: 1140px;
		margin: 0 auto 0 auto;
	}

	@media screen and (max-width: 1180px) {
		.container {
			width: 100%;
			padding-left: 20px;
			padding-right: 20px;
		}
	}

/* Bild
--------*/

    img, picture, video, canvas, svg {
        display: block;
		max-width: 100%;
		height: auto;
	}

/* Link
--------*/

    a {
		color: #1c9dd7;
		text-decoration: none;
	}

	a:hover {
		color: #000000;
	}

/* Liste
---------*/

    ol, ul {
    	list-style: none;
    }

/* Eingabefeld
---------------*/

    input, button, select, textarea {
		font-family: inherit;
		font-size: inherit;
    }

/* Tabelle
-----------*/

    table {
    	border-collapse: collapse;
    	border-spacing: 0;
    }

    table td,
    table th {
       vertical-align: top;
    }