*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
.hero{
    width: 100%;
    height: 100vh;
    background: rgb(26, 26, 26);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero h1{
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    color: white;
    margin-bottom: 50px;
}
.hero h1 span{
    color: rgb(115, 115, 115);
}

textarea{
    width: 600px;
    height: 250px;
    background: #333;
    color: white;
    font-size: 15px;
    word-spacing: 5px;
    letter-spacing: 1px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
    line-height: 1.5;
}
textarea::placeholder{
    font-size: 16px;
    color: #ddd;
}
textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 8px #fff;
  transition: 0.3s;
}
.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    display: flex;
    align-items: center;
    background: white;
    color: rgb(26, 26, 26);
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    
}
.triangle{
    height: 24px;
    width: 32px;
    border: 12px solid transparent ;
    border-left: 16px solid rgb(26, 26, 26);
}
button:hover {  
    box-shadow: 0 4px 15px #fff;
    transition: transform 0.2s;
    transform: scale(1.05);
}

select{
    flex: 1;
    color:rgb(26, 26, 26);
    background: white;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(1.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position-x: 405px;
    background-position-y: 12px;
}
select:hover{
    opacity: 0.8;
}
.typing-effect {
  width: 20ch;           
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fff;
  animation: typing 4s steps(20) forwards, blink 0.7s step-end infinite;
  font-family: monospace;
  color: #fff;
}

@keyframes typing {
  from { width: 0; }
  to { width: 20ch; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #fff; }
}
