@font-face {
    font-family: Bungee;
    src: url(BungeeShade-Regular.ttf);
}
.top {
    display: flex;
    border-bottom: 1px gray solid;
    gap: 10rem;
    height: 4rem;
    position: relative;
    margin: 0%;
    padding: 0%;
    width: 100vw;
    box-shadow: 2px 2px 7px 1px rgba(0,0,0,0.2);
    flex-grow: inherit;
    justify-content: space-between;
    align-items: center;
    
}
.banner{
    display: flex;
    height: 50vh;
    width: 100vw;
    box-shadow: 2px 2px 7px 1px rgba(0,0,0,0.2);
    margin: 0px;
    padding: 0px;
    background: #1E72AA;
    background: -moz-linear-gradient(-45deg, #1E72AA 0%, #2697E0 50%, #185C8B 100%);
    background: -webkit-linear-gradient(-45deg, #1E72AA 0%, #2697E0 50%, #185C8B 100%);
    background: linear-gradient(135deg, #1E72AA 0%, #2697E0 50%, #185C8B 100%);
    justify-content: space-between;
}
.banner-text {
   font-family:  fantasy;
   font-size: 3em;
   font-style: italic;
   text-shadow: 2px 2px #185C8B;
   height: 100%;
}

.search-bar {
    position: relative;
   justify-self: center;
   width: 400px;
}
.grid{
    display: flex;
    column-gap: 100px;
}
.separator{
    display: block;
    border-top: solid 1px;
    border-color: rgb(0, 0, 0);
    height: 10vh;
    width: 100vw;
    margin: 0px;
    background-color:#e6e9e9;
    text-align: center;
    font: 4em Bungee;
    padding-bottom: 10px;
    
}

.inventory{
    display: flex;
    background-color: #e6e9e9;
    width: 100vw;
    height: 400px;
    grid-template-columns: 0.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;

}
.inventory div {
    position: relative;
    margin-top: 1em;
    margin-left: 10px;
    height:300px;
    width: 250px;
    background-color: white;
    border-radius:10%;

}
.email {
    height: 100%;
}
.logo {
    height: 100%;
}

.text-box{
    display: flex;
    height: fit-content;
    margin: 0px;
    padding-right: 10%;
    flex-direction: column;
    gap: 4em;
    margin-top: 60px;
}
.footer{
    display: block;
    background-color: black;
}
.sell {
    margin-right: 30px;
}