* { 
	margin: 0; 
}

body {
    font-family: Verdana;
    font-size: 14pt;
	background-color: lightskyblue;
}


img {
    display: block; 
    margin: 20px auto;
    max-width: 100%; 
    height: auto; 
    border-radius: 15px; 
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease; 
}



p a {
    font-weight: bold;
	color: black;
	text-decoration: none;
}

p a:hover {
    color: black;
	font-size: 110%;
}

#wrapper {
    width: 900px;
	margin: auto;
	background-color: lightskyeblue;
}

header {
  
	text-align: center;
}

header h1 {
    padding: 20px 5px 5px 5px;
	color: black;
    font-family: Impact;
    font-weight: normal;
    font-size: 80pt;
}

nav {
    
    margin-bottom: 20px; 
}


nav a {
    font-family: Impact;
    font-size: 15pt;
	color: black;
    text-decoration: none;
    display: inline-block;
    width: 445px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}



.wolk-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


.wolk {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 14pt;
    text-align: center;
    line-height: 25px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-basis: 45%;
    box-sizing: border-box;
}


.wolk:hover {
    background-color: lightgray;
    transform: scale(1.1);
}


.wolk:focus {
    background-color: lightgrey;
}


.wolk.active {
    background-color: lightgrey;
}

#bigimage {
    border-radius: 15px; 
    overflow: hidden; 
}


#bigimage img {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    border-radius: 15px;
	max-height: 85%;
}
#bigimage p {
    background-color: #ffffff;
    color: #00c9fd;
    font-size: 12pt;
	display: flex;
	
}

article {
    background-color: green;
    margin: 20px 0px;
    color: black;
    padding: 10px;
    border-radius: 15px; 
    overflow: hidden; 
	text-align: center;
}


article h1{
    padding: 10px;
    font-family: Impact;
    font-size: 25pt;
    text-align: center;
}

article img {
    float: center;
	margin: auto;
}

#contact {
    background-color: #964B00;
    padding: 20px;
    border-radius: 15px; 
    color: black;
    text-align: center;
}




body {
    background-image: url('images/gras.jpg'); 
    background-size: cover; 
}
table {
    border-collapse: collapse; /* Ensures there is no space between table cells */
    width: 100%; /* Optional: Adjust width of the table */
}

th, td {
    border: 1px solid black; /* Adds a border around table cells */
    padding: 10px; /* Equivalent to cellpadding */
    text-align: left; /* Optional: Aligns text to the left */
}

th {
    background-color: #f2f2f2; /* Optional: Add background color to header cells */
}

td {
    background-color: #fff; /* Optional: Add background color to data cells */
}
