html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: "Poppins",Arial, Helvetica, sans-serif;
}

#navbar {
    margin: 0;
    padding: 5px 0;
    width: 100%;
    height: 50px;
    position: sticky;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #31d35c, #2bb7da);
    box-shadow: 0 10px 10px -5px rgba(0,0,0,0.1);
}

#navbar ul {
    display: flex;
    margin: 10px 0 10px auto;
    width: 55%; 
    justify-content: space-evenly;
    list-style: none;
}

#navbar ul li a {
    margin-left: 3px;
    color: white;
    opacity: 0.7;
    font-size: 1.2rem;
    font-family: "Poppins" ,Arial, Helvetica, sans-serif;
    text-decoration: none;
}

#navbar ul li a:hover {
    color: lightblue;
    opacity: 1;
    text-decoration: underline;
    transition: all 0.15s; 
}

#intro-section {
    height: 22em;
    background-image: url(ZwierzoKraina_logo_jpg.jpg);
    background-position: center;
    background-repeat: no-repeat;
}


.message {
    display: flex;
    margin: 20px;
    width: 500px;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: "Poppins" ,Arial, Helvetica, sans-serif;
    text-align: center;
}

.message img {
    max-width: 50%;
}

section {
    margin-top: 5rem;
    padding-top: 3rem;
}

.section-heading {
    font-size: 2rem;
    text-align: center;
    color: #31d35c;
    position: top;
}

.about-container {
    margin-left: 3em;
    display: flex;
    justify-content: center;
    color: #2bb7da;
}

div.my-information {
    display: block;
    font-size: 1.5rem;
    text-align: left;
}

.my-tekst {
    margin-top: 5em;
    display: block;
    font-size: 1rem;
    text-align: left;
    color: #31d35c;
}



.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-container .image-box {
    margin: 50px;
    text-align: center;
    font-size: large;
    color: #2bb7da;
}
.contact-container .image-box img {
    height: 15em;
}

.vet-container {
    display: flex;
    justify-content: center;
    color: #2bb7da;
}

a:link {
    color: blue;
    background-color: transparent;
    text-decoration: none;
}