
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body,main{
    width: 100%;
}
body{
    color: #000000;
    background-color: #FFFAFB;
    font-family: 'Roboto',sans-serif;
}

.main{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-header{
    font-size: 50px;
    margin-bottom: 30px;
}

.main-search{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
    justify-content: center;
}

.main-input,.main-prompt{
    border: none;
    outline: none;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    padding: 10px;
}

.prompt-btn,.input-btn{
    border: none;
    width: 130px;
    background-color: #04E762;
    border-radius: 20px;
    color: #000000;
    transition: all .1s linear;
}

.prompt-btn:hover,.input-btn:hover{
    cursor: pointer;
    background-color: #02bb4f;
}

.cards{
    margin-top: 30px;
}

.card{
    width: 100%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    margin-bottom: 20px;
    border-radius: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .1s linear;
}

.card:hover{
    cursor: pointer;
    background-color: #f1f1f1;
}