body{
    background-image:url('/cats.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    height: 100vh;
    width: 100%;
  height: auto;
   
}


nav {
    display:flex;
    justify-content:start;
    align-items: center;
    padding: 30px;
    background-color: rgba(199, 184, 184, 0.6);
    justify-content: first baseline;
    border-radius: 1rem;
    
    
}

body {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}


#header-img {
    margin-left: 40px;
    margin-top: 10px;
    height: 100px;
    width: 100px;
    float: left;
    margin: 0px;
    font-size: 40px;
}
 
.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
    margin-top: 30px;
}


.card {
    min-width: 400px;
    height: auto;
    width: 30%;
    padding: 30px;
    border-radius: 1.2rem;
    background: rgba(129, 125, 125, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.inhoud {
    padding: 20px;
    background-color: rgba(20, 12, 12, 0.6);
    color: #e9e5e5;
    border-radius: 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.card:hover .inhoud {
    background-color: rgba(20, 12, 12, 0.8);
}

h1 {
    font-size: 24px;
    color: #e9e9e9;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}


.home, .gal, .more, .Contact {
    color: black;
    text-decoration: none;
    margin-right: 1em !important;
    font-family: "Nunito", sans-serif;
}
footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

footer .box {
    width: 45%;
}

footer .box ul {
    list-style-type: none;
    padding: 0;
}

footer .box ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

footer .box .credentials li {
    display: flex;
    align-items: center;
}

footer .box .credentials li svg {
    margin-right: 10px;
    fill: #ffffff;
    width: 20px;
    height: 20px;
}

footer .box ul li svg.icon1 {
    fill: #141414;
    margin-right: 5px;
    width: 24px;
    height: 24px;
}

footer .box ul li a:hover {
    text-decoration: underline;
}

footer .box .credentials {
    font-size: 15px;
}

@media screen and (max-width: 540px) {
    .card {
        min-width: 80%;
    }
}