body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.header{
  background-color: #000000;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 10px 50px;

}
.h1-container{
color: white;
font-size: large; 
position: relative;
left: 700px;
margin: 0;
  text-shadow: 0 0 20px #ff4d4d, 0 0 40px #ff1a1a;
  transition: 0.3s;  
}
button {
  font-size: 20px;
  padding: 30px 60px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
}
a {
  font-size: 20px;
}

.header-links a {
  color: white;
  padding: 2px 30px;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.5s ease;
   width: 200px;
}
.header-links a:hover {
  background-color: #ff4d4d;
  box-shadow: 0 0 30px #ff4d4d;
     width: 200px;
}
.header-links button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 15px;
}
.header-links button:hover {
  background-color: #3399ff;
  box-shadow: 0 0 10px #3399ff, 0 0 20px #3399ff;
  transition: 0.3s;
  
}
.h1-container:hover{
   transform: scale(1.05);   
}
.part-p {
  color: white;
  font-size: 18px;
  font-weight: 600;
  width: 1000px;
  line-height: 1.4;
  margin-top: 5px;
  margin-left: 300px;
  text-shadow: 0 0 15px #000000;
  letter-spacing: 1px;


}
.landing-page {
  background-color: #000000;
  width: 100%;
  min-height: 25vh;
  border-radius: 0 0 100px 100px;
position: relative;
top: -10px;
}
.h1-text {
  padding: 25px 50px;
  font-size: 50px;
  line-height: 0.9;
  color: #000000;
  font-weight: 900;
  margin-top: 15px;
  text-shadow: 0 0 20px #0000004d, 0 0 40px #0000004d;
  letter-spacing: 3px;
  transform-origin: center;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
  text-align: center;
}
.h1-text:hover {
  text-shadow: 0 0 30px #0000004d, 0 0 60p #0000004d;
  transform: scale(1.05);
}
/* Support */
.support-type {
display: flex;
justify-content: center;
align-items: center;
margin: 40px auto;
}
.support-type textarea{
width: 90%;
max-width: 500px;
height: 120px;
padding: 15px;
font-size: 16px;
border: 2px solid #4a90e2;
border-radius: 12px;
resize: none;
outline: none;
transition: 0.3s;
font-family: "Arial", sans-serif;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.support-type textarea:focus{
border-color:  #2c5fb8;
box-shadow: 0 0 10px rgba(76,132,255,0.5);
}
.response-meassege{
text-align: center;
display: none;
margin-top: 15px;
font-size: 16px;
color: #333;
transition: 0.3s;
}
/*support-button*/
.support-button button{
background-color: #4a90e2;
color: white;
border: none;
padding: 10px 25px;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
position: relative;
left: 730px;
}
