body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#nav-bar{
    display:flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FDFEFE;
    border-bottom: solid 1px oklch(90% .01 250);
    position: sticky;
}

#nav-bar div{
    margin-left: 5%;
    margin: 5px 0 5px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Geist;
    font-weight: 900;
    font-size: x-large;
    word-spacing: 0.5px;
}

#nav-bar #nav-buttons{
    margin-right: 25px;
}

#nav-bar button,
#sign-in{
    margin-right: 5%;
    background-color: oklch(55% .22 250);
    border-radius: 10px;
    border:none;
    margin: 5px 5% 5px 0;
    height: 36px;
    color: oklch(99% 0 0);
    font-weight: 700;
    font-size: .875rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 7rem;
    cursor: pointer;
}

#sign-out{
    background-color: white !important;
    color: black !important;
    transition: background-color 0.3s;
}

#sign-out:hover{
    background-color:oklch(85% .18 85) !important;
}

#nav-bar svg{
    font-size:14px;
}

#nav-bar img{
    width: 50px;
    height: 50px;
}

/*Card Styling*/

#card-container{
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    column-gap: 10px;
    row-gap:10px;
    margin-bottom: 2rem;
    width:100%;
    padding: 0 20px;
}

.card{
    border: solid 1px oklch(90% .01 250);
    border-radius: 10px;
    padding: 40px 20px;
    height: 12rem;
    transition: box-shadow 0.3s;
}

.card div{
    width: 32px;
    border-radius: 10px;
    background-color: oklab(0.55 -0.0752444 -0.206732 / 0.1);
    padding: 5px 5px;
    text-align: center;
    transition: all 0.8s;
}

.card:hover{
    border:solid 1px oklch(0.55 0.22 250);
    box-shadow: 0 0 2px 1px oklch(0.55 0.22 250);

}

.card:hover div{
    background-color: oklch(0.55 0.22 250);
    transform:scale(1.1);
}

.card:hover div svg{
    color: white;

}

.card div svg{
    color:oklch(0.55 0.22 250);
    width: 32px;
    height: 32px;
}
