body {
    background-color: white;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    visibility: visible;
}

p {
    font-family: "Prata", serif;
    color: #FFFFCB;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    font-style: normal;
}

a {
    text-decoration: none;
    color: #1A2E40;
}

#p-small {
    font-size: 1.4rem;
    color: #1A2E40;
}

#fixed {
    position:fixed;
    right: 0;
}

#donker-blauw {
    color: #1A2E40;
}

#p-padding {
    padding: 0px 20px 40px 20px;
}

#white {
    color: #1A2E40;
}

#italic {
    font-style: italic;
}

img {
    width: 25%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 40px;
}

#flex-container {
    background-color: #1A2E40;
    justify-content: space-between;
    border-radius: 4px;
    width: full;
}

.info-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.tag {
    height: 40px;
    background-color: white;
    font-size: 1.4rem;
    color: #1A2E40;
    width: fit-content;
    padding: 20px;
    margin-top: -8px;
    border-radius: 0px 0px 4px 0px;
}

.flex-container-2 {
    display: flex;
    height: auto;
    gap: 80px;
    align-self: flex-end;
}

@media (max-width: 800px) {
    #flex-container {
      flex-direction: column;
    }
    .flex-container-2 {
        flex-direction: column;
        gap: 0px;
      }
      .info-wrapper {
        flex-direction: column;
      }
     img {
        width: 100%;
     }   
     p {
        font-size: 2rem;
     }
     #p-padding {
        font-size: 2rem;
     }
  }