body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(0, 0%, 86%);
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
}

#container{
    width: 40%;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    border-bottom-right-radius: 30%;
}

#input-container{
    display: flex;
    justify-content: left;
    align-items: flex-start;
    gap: 20px;
}

.input-field{
    display: flex;
    flex-direction: column;
    width: 20%;
}

input{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid hsl(0, 1%, 44%);
    color: black;
}
input:focus{
    border-color: hsl(259, 100%, 65%);
    outline: none;

}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]:placeholder-shown{
    font-weight: 900;
    font-size: 18px;
}

input[type=number]{
    color: black;
    font-weight: 900;
}

hr{
    width: 100%;
    height: 1px;
    background-color: hsl(0, 0%, 86%);
    border: none;
    margin-top: 20px;
}

#button-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

input[type=submit]{
    background-color: hsl(259, 100%, 65%);
    border-radius: 50%;
    height: 80px;
    width: 95px;
    background-image: url('./assets/images/icon-arrow.svg');
    background-position: center;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    border: none;
}

input[type=submit]:hover{
    background-color: black;
    cursor: pointer;
}

span{
    color: hsl(0, 1%, 44%);
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
}

img{
    width: 30px;
    height: 30px;
}

b{
    color: hsl(259, 100%, 65%);
}
h1{
    margin: 0px;
    font-style: italic;
}

@media screen and (max-width: 600px) {
    #container{
        width: 85%;
        height: 50vh;
    }   

    #input-container{
        justify-content: space-between;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .input-field{
        width: 100%;
    }
    
    input[type=submit]{
        height: 50px;
        width: 50px;
        background-size: 25px;
        top: -15px;
        position: absolute;
        z-index: 1;
    }

    #button-container{
        position: relative;
        width: 100%;
        flex-direction: column;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    hr{
        display: block;
        width: 100%;
        margin: 0;
        overflow: visible;
        position: relative;
        bottom: -9px;
    }



    h1{
        font-size: 1.5em;
    }
}