*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero{
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgb(42, 42, 53),rgb(0, 0, 0));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
h1{
    color: white;
    letter-spacing: 7px;
    font-family: cursive;
    margin-top: -50px;
    margin-bottom: 50px;

}
span{
    color: rgb(184, 126, 46);
}
textarea{
    height: 250px;
    width: 600px;
    background-color: #343b54;
    background: linear-gradient(45deg,rgb(164, 120, 120) ,rgb(37, 43, 53));
    border: 5px;
    border-radius: 20px;
    padding: 10px;
    color: white;
    font-size: 15px;
    overflow:auto;
    /* margin-bottom: 25px; */
}
textarea:hover{
    transform: scale(1.05);
    box-shadow: 5px 5px 10px 10px rgba(255, 255, 255, 0.47);
    transition: 1s;
}
.row{
    /* background-color: red; */
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.button1{
    background: linear-gradient(rgb(68, 67, 67),rgb(255, 255, 255));
    font-size: 12px;
    font-size: large;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.button1:hover{
    box-shadow: 2px 2px 2px 2px white;
    transition: 0.5s;
}
img{
    width: 30px;
    margin-right: 10px;

}
select{
    flex: 1;
    color: #fff;
    background: #6865c8;
    height: 30px;
    width: 250px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(images/drop.png);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position-x: calc(100%);
    background-position-y: -7px;
    cursor: pointer;
}
.btn{
    /* display: flex; */
    position: relative;
    /* height: 30px; */
    /* box-sizing: border-box; */
    color:rgb(0, 0, 0);
    background-color: rgb(45,45,45);
    justify-content: center;
}
.btn{
    border: 1px solid black;
    border-radius: 3px;
    /* background-color: rgba(138, 122, 122, 0.461); */
    color: rgb(255, 255, 255);
    scale: 1.3;
    cursor: pointer;
}
.btn:hover{
    /* background-color: white; */
    color: black;
    transition: 0.5s;
    box-shadow: 5px 5px 30px 5px rgb(239, 235, 235);
}
