/* general shit */

html, body {
    height: 100%;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    width: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

p, ul {
    font-size: 20px;
}

select {
    text-align: center;
    width: 250px;
}

.page {
    margin: 30px;
    padding: 40px 40px;
    background-color: #0B3A46;
    border-radius: 20px;
}

footer {
    text-align: center;
    margin: auto 30px;
    margin-bottom: 0;
    background-color: #0B3A46;
    border-radius: 20px 20px 0 0;
}

/* home */
#homepage {
    background-image: url("images/LAN picture 1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#home {
    text-align: center;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home #page-title header {
    font-size: 50px;
    border-radius: 18px;
}

/* competities */
#competities {
    text-align: center;
}
#listcompetities, #competities h2 {

}
#competities h2 {
	border-top: none;
    border-bottom: 2px solid #ff8000;
	padding: 0 auto 10px auto;
}
#listcompetities {
	margin: 0 auto;
	font-size: 24px;
	list-style: none;
	padding: 0;
	padding-left: 58px;
}
#listcompetities li::before {
	content: "• ";
	font-weight: bold;
}
#dropdown {
    position: relative;
    display: inline-block;
    border: 2px solid #ff8000;
    border-radius: 12px;
    padding: 5px;
    background-color: #0B3A46;
    transition: all 0.2s ease;
}

#dropdownbutton {
    background-color: #0B3A46;
    color: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
}

#compkeuzes-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -50%;
    background-color: #0B3A46;
    padding: 10px;
    min-width: 200%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

#compkeuzes-menu label {
    display: block;
    margin: 3px 0;
    padding: 2px 5px;
    cursor: pointer;
	font-size: 18px;
}

#compkeuzes-menu label:hover {
    background-color: #08303c;
    border-radius: 6px;
}
#compkeuzes-menu button {
    display: block;
    width: 100%;
    margin-top: 5px;
    background-color: #0B3A46;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    font-size: 16px;
}

#compkeuzes-menu button:hover {
    background-color: #08303c;
}

#dropdown.show #compkeuzes-menu {
    display: block;
}
/* registreren */
#registerform, #competities {
    margin: 30px;
}

label {
    font-size: 25px;
    margin: 5px 0;
}

input, select {
    font-size: 20px;
    margin: 5px 0;
}

/* navbar */
nav {
    background-color: #0B3A46;
    height: 30px;
    padding: 10px 20px 10px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    position: static !important;
}

#home-knoppen1,
#home-knoppen2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

#home-knoppen1 {
    grid-column: 1 / 2;
    justify-content: flex-start;
}

#home-knoppen1 img {
    margin-left: 10px;
    max-height: 30px;
    height: auto;
}

#home-knoppen2 {
    grid-column: 3 / 4;
    justify-content: flex-end;
}

button {
    background-color: transparent;
    border-radius: 25px;
    border: 2px solid #ff8000;
    cursor: pointer;
    font-size: 20px;
    color: white;
}

#page-title {
    border-radius: 20px;
    background-color: #ff8000;
    margin: 30px;
    padding: 5px 5px;
    text-align: center;
}

#page-title header {
    font-weight: bold;
    display: inline-block;
    padding: 0px 30px;
    font-size: 30px;
    background-color: #0B3A46;
    border-radius: 20px;
}

/* webshop */
#webshop {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    grid-auto-rows: 200px;
}

.product {
    padding: 20px;
    border: 3px solid #ff8000;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.product img {
    max-width: 160px;
    max-height: 160px;
    width: auto;
    height: auto;
}

.product p {
    margin: 0;
}


/* informatie */
#informatie {
    text-align: center;
}

ul {
    display: inline-block;
	text-align: left;
}
h2 {
	border-top: 2px solid #ff8000;
	font-size: 30px;
}
