body{
  margin: 0px;
  padding: 0px;
	font-family: 'Barlow';
}
html {
  scroll-behavior: smooth;
}
.ds{
  font-family: 'Dancing Script', cursive;
}
.title{
  font-size: 52px;
  margin-bottom: 0px;
  font-weight: bold;
  margin-top: 0px;
}
.menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #005f6ac6;
  color: white;
	padding: 14px 35px 0 35px;
}
.angebote{
	margin: 35px 75px 35px 18%;
}
.kontakt{
	margin: 35px 75px 35px 18%;
}
label.labels {
    font-size: 19px;
}
textarea#Nachricht {
    width: 95%;
    border: 3px solid #39838b;
    padding: 2.5%;
    font-size: 16px;
}
input[type="submit"] {
    cursor: pointer;
    width: 102%;
}
input[type="submit"] {
    width: 102%;
    background-color: white;
    transition: 0.5s all;
}
input[type="submit"]:hover {
    background-color: #39838b;
    color: white;
    transition: 0.5s all;

}
input, textarea{
    width: 95%;
    padding: 2.5%;
    font-size: 16px;
    border: 3px solid #39838b;
    font-family: 'Barlow';
}
.footer{
	display: block;
	height: 75px;
	background-color: #005f6ac6;
	color: white;
}
a.linkbar {
    text-decoration: none;
    font-size: 25px;
    color: black;
    transition: 0.5s all;
    padding-left: 15px;
    color: white;
}
zi {
    border: 1px solid #39838b;
    /* width: 100%; */
    display: block;
    margin: 35px 75px 35px 18%;
}
a.linkbar:hover{
  color: #005f6ac6;
  transition: 0.5s all;
}
.subtitle{
	font-family: serif;
  margin-top: 5px;
  font-size: 25px;
  margin-bottom: 0px;
	padding-left: 20px;
}
.bar{
	display: flex;
	align-items: baseline;
}
.left {
	display: block;
	width:48%;
	float:left;
}
.right {
	display: block;
	width:48%;
	float:right;
}
.angebote {
    padding-bottom: 25px;
}
.kontakt {
    padding-top: 25px;
}
h1{
	width: 75%;
  background-color: #005f6ac6;
	color: white;
}

@media only screen and (max-width: 700px) {
    .linkbar{
      display: none;
    }
    .angebote {
    margin: 35px 8% 35px 8%;
}
.kontakt {
    margin: 35px 8% 35px 8%;
}
}
@media only screen and (max-width: 600px){
  .right{
    width: 100%;
    margin-bottom: 20px;
  }
  .textc{
    display: none;
  }
  .imgs{
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .left{
    width: 100%;
  }
  .flexcontact {
    display: flex;
    flex-direction: column-reverse;
}
}
@media only screen and (max-width: 400px) {
    .bar{
      flex-wrap: wrap;
    }
    p.subtitle {
    padding-left: 0px;
}
.menu {
    padding-bottom: 14px;
}

h1 {
    width: 100%;
    background-color: #005f6ac6;
    color: white;
}
}

/* Toast-Notification */
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 3s;
}
@keyframes fadein { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeout { from {opacity: 1;} to {opacity: 0;} }