body {
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  background-color: #f0f0f0;
  margin: 0;
 
}

.bod {
  align-items: center;
  padding: 10px;
}

h1 {
  color: #333;
}

.form-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 500px;
  


}

label {
  display: block;
  margin-top: 10px;
  color: #555;
}

input, select, button {
  width: 94%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

button:hover {
  background-color: #0056b3;
}

#visitenkarte {
  width: 350px;
  height: 200px;
  border: 1px solid black;
  margin-top: 20px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

svg {
  width: 100%;
  height: 100%;
}

.resize-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #007bff;
  border: 1px solid #fff;
  cursor: nwse-resize;
  z-index: 1000;
}


.resize-box {
  position: absolute;
  border: 1px dashed #007bff;
  display: none;
}

@media (max-width: 600px) {
  #visitenkarte {
      width: 98%;
  }
}
