body{
    font-family: 'Outfit';
    margin:0;
}
header{
    height: 80px;
    width: 100%;
    background-color: #1C395E;
    padding: 0px;
    position:sticky;
    top:0;
    z-index: 100;
}
body{
    margin:0;
}
#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;
    width:250px;
    height:48px;
    
    justify-content: center;
    align-items: center;
}
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;
}
#checkout{
    margin: 50px;
    height: 100%;
}
#total{
    display:flex;
    justify-content: flex-end;
}
.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;
}
#billing{
    margin: 50px;
    height: 100%;
    margin-top: 10px;;
    display: flex;
    flex-direction: column;
}

form input{
    width: 40%;
    margin:10px;
    height:30px;
}

#checkoutbutton{
    height:40px;
    width:130px;
    border-radius: 2px;
    border: none;
    background-color: #1C395E;
    color: #dadada;
    margin-top:10px;
}

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;
}
