*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
.container{
}
body{
    background-color: aqua;
}
nav{
    height: 60px;
    background-color: #03A6A1;
    color: red;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
#sbar{
    border-radius: 5px;
    border: 1px solid grey;
    padding: 10px;
}

nav>h1{
    font-size: 40px;
    color: white;
    text-shadow: 2px 2px 2px black;
}
#btn{
    width: 80px;
    border-radius: 5px;
    background-color: #0E2148;
    border: none;
    color: white;
    font-weight: bolder;
}
.search{
    width: 300px;
    height: 30px;
    justify-content: center;
    display: flex;
    gap: 10px;
}
main{
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #9ECAD6;
    overflow: auto;
    position: relative;
    z-index: 1  ;
}
.card{
    height: 250px;
    box-shadow: 0 0 20px black;
    width: 350px;
    background-color: white;
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    transition: all 0.5s;
}

.card>img{
    height: 100px;
    width: 100px;
}

.card>h1{
    font-size: medium;
}

.card:hover{
    transform: scale(1.06);
}

footer{
    height: 100px;
    width: 100%;
    position: absolute;
    z-index: 0;
    background-color: #0E2148;
}