body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.left-content {
    flex: 1;
    text-align: center;
    padding: 40px;
    z-index: 2;
	color: white;
}

.right-content {
    flex: 1;
    text-align: left;
    padding: 40px;
    z-index: 2;
}
/* Diğer CSS kodları */

@media screen and (max-width: 1150px) {
  .container {
	  display: none;
	}
	
 .containerr {
	 display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
	}
  .balloons {
    order: 2;
  }

  .contact-form {
    order: 1;
    margin-top: 0;
  }
}

h1 {
color: white;
    font-size: 50px;
    margin-bottom: 20px;
}

p {
   color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    font-size: 16px;
}

form textarea {
    height: 150px;
}

form button[type="submit"] {
    background-color: #333333;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

form button[type="submit"]:hover {
    background-color: #FFFFFF;
	color: #000000;
}

.balloons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.balloon {
    position: absolute;
    background-color: #72C6B9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: float 6s ease-in-out infinite;
}

.balloon:nth-child(2n) {
    background-color: #FB6054;
}

.balloon:nth-child(3n) {
    background-color: #7F82BC;
}

.balloon:nth-child(4n) {
    background-color: #046380;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%) rotate(360deg);
        opacity: 0;
    }
}
