h1 {
    text-align: left;
    color: rgb(0, 0, 0);
    font-size: 25px;
}
/*Deze selector veranderd van alle "h1" de positie uitlijning van de text naar links, de kleur en de grootte van de lettertype.
https://developer.mozilla.org/en-US/docs/Web/CSS/Type_selectors*/

h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 600;
}
/*Deze selector veranderd van alle "h2" de positie uitlijning van de text naar het midden, de kleur en de grootte/dikte van de lettertype.
https://developer.mozilla.org/en-US/docs/Web/CSS/Type_selectors*/


h3 {
    font-size: 14px;
}
/*Deze selector verander van alle "h3" de grootte van de lettertype.
https://developer.mozilla.org/en-US/docs/Web/CSS/Type_selectors*/


ul {
    font-size: 12px;
    margin-left: -40px;
    margin-top: -10px;
}
/*Deze selector veranderd van alle "ul" de grootte van de lettertype en de positite van de text.
https://developer.mozilla.org/en-US/docs/Web/CSS/Type_selectors*/



.visitekaartje {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    height:506px;
    width: 500px;
    border: 7px solid rgb(209, 180, 144);
    border-radius: 25px;
    box-shadow: 0 0 10px 2px rgb(128, 111, 90);
    padding: 50px;
    margin: auto;
    margin-top: 55px;
    opacity: 0.9;
    transition: all 1.2s ease;
    overflow: hidden;
}

article {
    background-image: url("../assets/vietnam1.webp");
    background-size: contain;
}

.profile-card-example-img {
    position: top;
    top: 2rem;
    width: 5em;
    height: auto;
    border: 4px solid rgb(253, 240, 213);
    border-radius: 1em;
    box-shadow: 0 0 2px 2px rgba(209, 180, 144);
    transition: .25s .15s;
}

.imageflex { 
    display: flex;
}

.imageflexcontent { 
    margin-left: 15px; margin-top: 0; 
    color: rgb(0, 0, 0);
    font-size: small;
}

.imageflexcontent1 {
    margin-left: 15px; margin-top: 0;
    color: rgb(0, 0, 0);
    font-size: small;   
}

header {
    border: 5px solid rgb(253, 240, 213);
    border-radius: 25px;
    background-color: rgb(253, 240, 213);
    padding: 20px;
    height: 450px;
}

body {
    background-image: url("../assets/background2.jpg");
    background-size: 1600px;
    background-repeat: no-repeat;
}

.doelen {
    margin-left: 300px;
    margin-top: -75px;
}

.contact {
    margin-left: 300px;
    margin-top: -80px;
}

p.contact{
    font-size: 12px;
}

.food {
    margin-top: 40px;
}

.visitekaartje:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(233, 225, 165, 0.992);
  transition: 1.2s;
}
