* {
    font-family: sans-serif;
    color: white;
}
body {
    background-color: #332c3d;
    margin: 0;
}

#navbar {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 50px;
    max-width:100%;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #242029;
}

#logoEl {
    width: 50px;
    height: 50px;
    background-color: skyblue;
        background-image: url(public/logo.png);
    background-size: cover;
}

.navBarBtns{
    width: 75px;
    height: 50px;
    background-color: #242029;
    border: 0px;
    text-decoration: none;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}

.navBarBtns:hover {
    background-color: #161617;
}

.selectedNavbar {
    background-color: #161617;
}

#mainNavBarBtns {
    display: flex;
    margin: 0;
    width: fit-content;
}

#heroSection {
    text-align: center;
}


#productPanelContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.productPanel {
    display: flex;
    background-color: #242029;
    border-radius: 5px;
    width: 300px;
    padding-bottom: 50px;
    height: fit-content;
    align-items: center;
    flex-direction: column;
}

.priceHeader{
    margin: 10px 0;
}

.priceYearlyFooter {
    margin: 8px 0;
}

.purchaseBtns{
    background-color: #161617;
    border: 0;
    border-radius: 10px;
    height: 50px;
    width: 250px;
    font-size: 18px;
    font-weight: 520;
}

.purchaseBtns:hover {
    background-color: black;

}

.hidden {
    display: none;
}