@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@media only screen and (min-width: 480px) {
    /* GLOBAL */
    *{
        margin: 0px;
        padding: 0px;
    }
    html{
        height: 100vh;
        width: 100vw;
        overflow: hidden;
    }
    body{
        height: 100%;
        width: 100%;

        background: rgb(31,31,31);
        background: linear-gradient(90deg, rgba(31,31,31,1) 0%, rgba(40,40,40,1) 15%, rgba(0,0,0,1) 100%);
    }
    #main-container{
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    #main-container section{
        height: 100%;
    }
    #title-container{
        position: relative;
        
        width: 40%;
    }
    #hand-image{
        position: absolute;

        bottom: 0px;
        left: 20%;
        height: 35vw;
    }
    #send-image{
        position: absolute;

        bottom: 0px;
        left: 0px;
        height: 35vw;
    }
    #line-borrtom-left{
        position: absolute;
        bottom: 20%;
        left: 0px;
        height: 8vw;
    }
    #line-top-right{
        position: absolute;
        top: 10%;
        right: 0px;
        height: 8vw;
    }
    #input-container{
        position: relative;
        width: 60%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #spark{
        position: absolute;
        top: 7%;
        right: 10%;
        height: 6vw;
    }
    /* FORM */
    h1{
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400;
        font-size: 5vw;
        color: white;
    }
    h3{
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3vw;
        font-weight: 400;
        color: white;
    }
    form{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2vw;

        margin: 2vw;

        width: 100%;
    }
    input{
        box-sizing: border-box;
        padding-left: 2vw;
        height: 3vw;
        width: 50%;

        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5vw;

        border-radius: 1vw;
        border: 0.2vw solid white;
    }
    input::placeholder {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5vw;
    }
    button{
        height: 3vw;
        width: 5vw;

        border-radius: 1vw;
        border: none;
        background-color: white;
    }
    button>img{
        height: 80%
    }
    /* DATA FOMR */
    #form{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vw;

        margin: 2vw;

        width: 100%;
    }
    #form input{
        box-sizing: border-box;
        padding-left: 2vw;
        height: 3.5vw;
        width: 50%;

        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5vw;

        border-radius: 1vw;
        border: 0.2vw solid white;
    }
    #form button{
        height: 3vw;
        width: 10vw;

        border-radius: 1vw;
        border: none;
        background-color: white;
    }

    /* QUESTION */
    #question-done-container{
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 100%;
    }
    
    #question-done-container>img{
        position: absolute;
        bottom: 0px;
        right: 100px;

        height: 600px;
    }   

    /* ERROR */
    #error-container{
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5vh;
    }
    #error-container>h1{
        color: red;
    }
    #error-container>p{
        font-size: 2vw;
        font-family: 'Bebas Neue', sans-serif;
        color: white;
    }
    #error-container>button>img{
        height: 80%;
    }
    #error-container>button{
        font-size: 2vw;
        font-family: 'Bebas Neue', sans-serif;
        color: black;

        width: 10vw;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1vw;
    }
    /* SEND PHP */
    #loading-container{
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    
}