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

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

        background: rgb(0,0,0);
        background: linear-gradient(355deg, rgba(0,0,0,1) 0%, rgba(48,48,48,1) 100%);    
    }
    /* ERROR */
    #error-container{
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5vh;
    }
    #error-container>h1{
        font-family: 'Bebas Neue', sans-serif;
        font-size: 11vw;
        color: red;
    }
    #error-container>p{
        font-size: 6vw;
        font-family: 'Bebas Neue', sans-serif;
        color: white;
        margin: 0vw 5vw 0vw 5vw;
    }
    #error-container>button>img{
        height: 80%;
    }
    #error-container>button{
        font-size: 6vw;
        font-family: 'Bebas Neue', sans-serif;
        color: black;
        border-radius: 10vw;
        width: 50vw;
        height: 20vw;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5vw;
    }

    /* INDEX  */
    #main-container{
        height: 100%;
        width: 100%;

        display: flex;
        flex-direction:column-reverse;
        align-items: center;
        justify-content: flex-start;
    }
    #title-container-send{
        position: relative;

        height: 40vh;
        width: 100%;
    }
    #title-container{
        position: relative;

        height: 50vh;
        width: 100%;
    }
    #input-container{
        position: relative;

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

        height: 50vh;
        width: 100%;
    }
    #hand-image{
        position: absolute;

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

        bottom: 0px;
        left: 0px;
        height: 70vw;
    }
    #line-borrtom-left{
        position: absolute;
        bottom: 20%;
        left: 0px;
        height: 10vw;
    }
    #line-top-right{
        position: absolute;
        top: 10%;
        right: 0px;
        height: 10vw;
    }
    #spark{
        position: absolute;
        top: 7%;
        right: 10%;
        height: 6vw;
    }
    h1{
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400;
        font-size: 10vw;
        color: white;
    }
    h3{
        font-family: 'Bebas Neue', sans-serif;
        font-size: 5vw;
        font-weight: 400;
        color: white;
    }
    form{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vw;

        margin: 5vw;

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

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

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

        border-radius: 1vw;
        border: none;
        background-color: white;
    }
    button>img{
        height: 80%
    }

    /* 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: 14vw;

        height: 600px;
    }  
}