body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    background-color: #fffffe;
    margin:0;
}
header{
    height: 80px;
    width: 100%;
    background-color: #1C395E;
    padding: 0px;
    position:sticky;
    top:0;
    z-index: 100;
}
#logo{
    padding:5px;
    margin-left: 10px;
    max-width:60px;
    aspect-ratio: 1/1;
    margin-top: 2px;
}
#buttons{
    float:right;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 10px;
    height: 48px;
    width:250px;
}
button{
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
button:hover{
    opacity: 0.7;
}
a:hover{
    opacity:0.8;
}

#carticon{
    margin-top: 2px;
    height: 100%;
    width: clamp(5px, 13vw, 40px);
    float:right;
    margin-left:12px;
    object-fit: contain;
}
#sell{
    margin-top: 2px;
    height:90%;
    width: clamp(5px, 13vw, 90px);
    background-color: #fffffe;
    font-size: clamp(12px, 3vw, 18px);
    font-family: 'Outfit';
    float:right;
    border:0;
}
#login{
    height:90%;
    margin-top: 2px;
    width: clamp(5px, 13vw, 90px);
    float:left;
    background-color: #EED700;
    font-size: clamp(12px, 3vw, 18px);
    font-family: 'Outfit';
    border:0;
}
#welcome{
    width:100%;
    overflow:hidden;
    max-height:90vh;
    justify-content: center;
    align-items: center;
    display:flex;
    position:relative;
}
#background{
    display:block;
    max-width: 100%;
    max-height:100%;
    object-fit: fill;
}
#welcomebox{
    background-color: #fffffe;
    opacity:0.8;
    aspect-ratio: 4;
    min-width: 50%;
    position:absolute;
    text-align:center;
    display:flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
}
#titletext{
    text-align: center;
    margin:5px;
    font-size: 10vh;
    padding:10px;
    padding-bottom:0;
}
#grubslugdesc{
    margin:5px;
    margin-top:0;
    text-align:center;
    padding-top:0;
    padding:10px 20px;
}

#searchdiv{
    width:100%;
    align-items: center;
    text-align: center;
}
#searchbar{
    margin:10px;
    width:60%;
    height:4vh;
    padding-left:25px;
    border-radius:20px;
    margin-bottom: 20px;
}
.card{
    margin:30px;
    display:flex;
    height:auto;
    clear:both;
    border-radius: 10px;
    padding:10px;
    border: 1px solid lightgray;
    margin-top:10px;
}

.cardimage{
    float:left;
    width:150px;
    height:100%;
    border-radius: 5px;
}

.carddesc{
    padding:15px;
    float:left;
    height:100%;
}

.carddesc h3{
    margin:0px;
}

.carddesc p{
    margin: 5px;
    color: gray;
    font-size: 15px;
    margin-left:0;
}

.card button{
    display:flex;
}

.hide {
    display:none;
}

#seeitems{
    margin-top:10px;
    background-color: #1C395E;
    color:#fffffe;
    border:1px solid #1C395E;
    height:30px;
    padding:5px;
    align-items: center;
    box-shadow:none;
}

footer{
    display:flex;
    flex-direction:row;
    height: 80px;
    width: 100%;
    background-color: #dadada;
    padding: 0px;
    bottom:0;
    z-index: 100;   
    align-items: center;
    color:#1C395E
}

footer p{
    float:right;
    margin:5px;
    width:fit-content;
}

footer img{
    float:right;
}