@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding:0;
}

body{
    background-color: rgb(56, 97, 80);
    font-family: Work Sans;
}

.main{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
}

.main .logoBar{
    display: flex;
    flex-direction: column;
    color: white;
}

.main .logoBar .logo{
    width: 150px;
}

.main .logoBar h2{
    font-weight: bold;
}

.input{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.input input{
    height: 50px;
    width:300px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.162);
    padding-left: 10px;
}

.input button{
    height: 50px;
    width: 100px;
    border-radius: 5px;
    background-color: #12343b9e;
    color: white;
    box-shadow: 2px 2px 5px white;
    font-family: Work Sans;
    font-weight: 600;
}

.check{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dataContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.data{
    position: relative;
    background-color: #cedada;
    color: #1A2B2B;
    height: 250px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px whitesmoke;
    padding: 10px;
}

.dataHeadersLogo{
    height: 24px;
    width: 24px;
}

.dataHeaders{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dataHolders{
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 200px;
    width: auto;
    position: absolute;
    bottom: 0;
}

.dataInholded{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #cfffe580;
    border-radius: 5px;
    margin: 5px;
}

@media screen and (max-width: 450px) {
    .input input{
        height: 30px;
        width: 150px;
    }

    .input button{
        height: 30px;
        width: auto;
    }
}