body {
	font-family: Helvetica, Arial, sans-serif;
	background-color: #DEB887;
	color:#101010;
	padding: 15px;
}

ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            background-color: #333;
            overflow: hidden;
        }

        li {
            float: left;
        }

        li a {
            display: block;
            color: white;
            text-align: center;
            padding: 15px;
            text-decoration: none;
        }

li a:hover {
            background-color: #111;
}

li:hover {
	    cursor: pointer;
}

header {
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
	align-items: baseline;
	box-sizing: border-box;
}

.sub-header {

	margin-top: 15px;

}

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr; /* Standard: två kolumner */
	gap: 20px;
	padding: 20px;
}

.grid-container iframe {
	width: 100%;
	height: 300px; /* Justera höjden efter behov */
	border: none;
}

/* Media query för små skär */
@media (max-width: 600px) { /* Anpassa 600px efter dina behov */

.grid-container {
grid-template-columns: 1fr; /* ändrar till en kolumn */
	}
}

footer {
/*	position: fixed;
	width: 100%;
	bottom: 0;
*/}

.active {
	font-weight: bold;
	color: red;
}
