*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.903);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

div{
    background-color: rgba(0, 0, 0, 0.808);
    
    height: 300px;
    max-width: 350px;
    color: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.589);


    & #search{
        outline: none;
        background: rgba(0, 0, 0, 0.37);
        border: none;
        width: 200px;
        height: 40px;
        color: white;
        padding: 20px;
        border-radius: 20px;
        opacity: 3px;
        margin-left: 10px;
        box-shadow: inset 0px 0px 10px black;
        text-transform: capitalize;
        
    }

    & #button {
        border: none;
        outline: none;
        width: 40px;
        height: 40px;
        background-image: url(lupa-arredondada.png);
        background-size: cover;
        background-position: center center;
        background-size: 20px;
        background-repeat: no-repeat;
        background-color: rgba(167, 167, 167, 0.363);
        margin-left: 50px;
        box-shadow: inset 0px 0px 10px black;
        border-radius: 50%;
    }

    #button:hover{
        background-color: rgba(0, 0, 0, 0.37);
        border-radius: 50%;
    }

    & p{
        padding: 20px;
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 20px;
    }

    & img{
        width: 60px;
       
        background-image: url(script.js);
    }

    & main {
        display: flex;
    }

}


#stage {
    text-transform: capitalize;
}