* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat Alternates', sans-serif;
    overflow: hidden;
}

#container {
    width: 100%;
    height: 100%;
}

#header {
    width: 100%;
    height: 100px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);

}

#header > img {
    height: 31.99px;
    width: 200px;
    position: absolute;
    top: 34px;
    left: 58px;
    border-radius: 0px;
}

#content {
    margin-top: 10vh;
}

#description {
    width: 617px;
    height: 180px;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    margin-left: auto;
    margin-right: auto;
}

span {
    font-family: 'Kanit', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 75px;
}

span::before {
    content: "Order Ride";
    color: #662D91;
    animation: animate infinite 3s;
}


#form {
    width: 60%;
    max-width: 480px;
    height: 60px;
    display: flex;
    flex-direction: row;    
    margin: 2% auto ;
}

input {
    width: 68%;
    height: 100%;  
    background: linear-gradient(0deg, rgba(252, 252, 252, 0.2), rgba(252, 252, 252, 0.2)), #FFFFFF;
    border: 1px solid #E6E7E6;
    padding: 5px 10px;
    outline: none;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 15px;
}

#submit {
    width: 30%;
    color: #FFFFFF;
    background: #37B34A;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;

}

#background-img {
    display: block;
    margin: 8vh auto 0 auto;
}

#svg-arrow {
    color: #37B34A;
}

#arrow-body {
    position: absolute;
    top: 480px;
    left: 70px;
    transform: rotate(-10deg);
}

#arrow-head-1 {
    position: absolute;
    top: 440px;
    left: 310px;

}

#arrow-head-2 {
    position: absolute;
    top: 456px;
    left: 333px;
}


@keyframes animate {

    0% {
        content: "Order Ride";
        color: #D8C517;
    }

    50% {
        content: "Handle Logistics";
        color: #37B34A;
    }

    75% {
        content: "Run errands";
        color: #662D91;
    }
}

#response {
    display: block;
    width: 85%;
    max-width: 400px;
    color: #37B34A;
    font-weight: bold;
    margin: 0 auto;

}


@media only screen and (max-width: 650px) {
    #header {
        height: 10vh;
    }

    #header > img {
        left: 50%;
        top: 3vh;
        width: 150px;
        height: 3.3vh;
        transform: translateX(-50%);
    }

    #description {
        width: 80%;
        max-width: 400px;
        height: unset;
        font-weight: 400;
        font-size: 6.5vw;
        line-height: 5vh;
        text-align: start;
    }

    span {
        white-space: nowrap;
        display: block;
        font-weight: 600;
        font-size: 10vw;
        line-height: 60px;
    }

    #form {
        width: 85%;
        height: 8vh;
    }

    #submit {
        width: unset;
        font-size: 13px;
    }

    #background-img {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        margin: unset;
    }

}

@media only screen and (max-width: 1190px) {
    svg {
        display: none;
    }
}

@media only screen and (max-height: 400px) and (max-width: 700px){
    #background-img{
        display: none;
    }
}