@import url('https://fonts.cdnfonts.com/css/madelon-script');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    background-color: #e8e4db;
}

h1{
    font-family: 'Madelon Script', sans-serif;
    font-weight:300;
    font-size:50px;
}

.lineUp {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translatex(-200px);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translatex(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.overmij{
  margin-top:160px;
    display:flex;
    margin-left:auto;
    margin-right: auto;
    font-family: sans-serif;
    width: 60%;
    margin-bottom:40px;
}

.image{
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 50%;
    margin-right:1em;
    height:auto;
    object-fit: cover;
}

@media (max-width: 1300px) {
    .overmij{
      text-align: center;
        display: block;
        width: 90%;
        margin-inline: auto;
        margin-top:114px;
        margin-bottom:40px;
    }

    .image{
        width: 80%;
        border-radius: 0px;
        margin:auto;
    }

    .text{
       width: 100%;
    }
}