.container {
    display: flex;
    position:relative;
    width: 770px;
    height:555px;
    top:150px;
    left:35%;
   align-items:center;
  }
  
  .contactbox {
  flex: 1;
  width: 400px;
  height: 515px;
  z-index:1;
  
  text-align: left;
  }
  
  
  form {
    position:absolute;
      width: 560px;
      margin-left: 0;
      margin-top: 0;
      padding: 20px;
      background-color: #f2f2f2;
      border-radius: 5px;
      height: 473px;
    }
  
  
    form h2 {
      text-align: left;
      margin-top:0px;
      line-height: 1.5;
    
    }
  
    form p {
      line-height: 0.5;
    }
  
    label {
      display: none;
      margin-bottom: 5px;
      color: grey;
    }
  
    #keuze {
      display: none;
      width: 94%;
      padding: 10px 8px;
      margin-bottom: 10px;
      display: inline-block;
      border: 1px solid #ccc;
      border-radius: 3px;
      box-sizing: border-box;
      color: grey;
      font-size: 0.8em;
    }
  
    input, textarea {
      width: 90%;
      padding: 10px;
      border-radius: 3px;
      border: 1px solid #ccc;
      margin-bottom: 10px;
      font-size: 1em;
    }
  
    input::placeholder, textarea::placeholder {
      font-size: 0.8em; /* Reduce the placeholder font-size */
      color: #bbbaba; /* Change the placeholder color if needed */
    }
  
    button {
    background: white;
    font-family: Georgia, serif;
    font-size: 2em;
    font-weight: bold;
    font-variant: small-caps;
    color: black;
    margin-top: 20px;
      padding: 10px 20px;
      border: solid 1.5px black;
      border-radius: 3px;
      cursor: pointer;
    }
  
    button:hover {
      background: black;
      font-family: Georgia, serif;
      font-size: 2em;
      font-weight: bold;
      font-variant: small-caps;
      color: white;
        padding: 10px 20px;
        border: solid 1.5px white;
        border-radius: 3px;
        cursor: pointer;
      }
  
      .g-recaptcha {
        width: 290px;
        height:72px;
        border-radius: 4px;
        border-right: 1px solid #d8d8d8;
        overflow: hidden;
       }
  
  
    .doos {
      box-sizing: border-box;
      display: flexbox;
      position:relative;
      background: none;
      border: 19px solid darkgrey;
      border-radius: 10px;
      width: 47%;
      height: 600px;
      top: 223px;
      z-index: -7;
      margin-left: auto;
      margin-right: auto;
      }
      
      .container2 {
        box-sizing: border-box;
        position:absolute;
        flex-direction: column;
        top:370px;
        width: 500px;
        height:300px;
        border: solid 1px white;
        border-radius:10px;
        margin-left:50%;
        transform: translateX(-50%);
        text-align:center;
        color:white;
        background-color: rgba(255, 255, 255, 0.2);
        display: block;
        animation: blink 5s infinite;
      }
  
      @keyframes blink {
        0% { border-color: red; }
        50% { border-color: white; }
        100% { border-color: red; }
      }
    
    
      .container2 h2 {
        margin-top:20px;
        font-size:48px;
        color:red;
      }
       
    .container2 a {
        color:red;
        font-style:italic;
        cursor: pointer;
        text-decoration:none;
    }
  
    .container2 p2 {
      position:relative;
      font-style:italic;
      color:grey;
      font-size: 14px;
      top: -17px;
    }