.background {
    background-color: rgb(2, 42, 62)
}

.logo {
    width: 30px;
    margin: 0 auto;
    display: block;
    padding: 5px;
    border-radius: 10px;
    margin: 5px;
    align-items: left;
    background-color: rgb(0, 53, 80);
}

.navbar {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}


.navbar ul {
    list-style-type: none;
    margin: auto;
    padding: 0;
    background-color: rgb(0, 28, 42);
    position: fixed;
    width: 99%;
    top: 0px;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    justify-content: center;
    min-height: 50px;

}


.navbar li a {
    display: block;
    color: white;
    font-family: sans-serif;
    background-color: rgb(0, 53, 80);
    text-align: center;
    padding: 7px 16px;
    text-decoration: none;
    border-radius: 100px;
    margin: 5px;
}

.navbar li a:hover {
    background-color: rgb(11, 66, 94)
}

.navbar li .active {
    background-color: rgb(0, 135, 94);
}


.sortBundles ul {
    justify-content: left;
    list-style-type: none;
    margin: 0px 0px 0px 2%;
    padding: 0;
    display: flex;

}

.sortBundles li a {
    display: block;
    color: white;
    font-family: sans-serif;
    background-color: rgb(0, 53, 80);
    text-align: center;
    padding: 7px 16px;
    text-decoration: none;
    border-radius: 100px;
    margin: 5px;
}

.sortBundles li .active {
    background-color: rgb(0, 135, 94);

}

.sortBundles li a:hover {
    background-color: rgb(11, 66, 94)
}

.container {

    background-color: rgb(0, 28, 42);
    padding: 2vw;
    border-radius: 2vw;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 10vh;
}


@media screen and (max-width: 500px) {
    .container {
        max-width: 333px;
    }

    .navbar ul {
        max-width: 330px;

    }

    .resized-image {
        width: 300px !important;
        border-radius: 20px;
    }

    .info {
        min-width: 300px !important;
        height: auto !important;
    }

    .bundle-title {
        width: 250px !important;
        text-align: center;
    }

    .bundle-price {
        float: left !important;
        margin: 10px !important;
    }

    .bundle-expires {
        float: right !important;
        margin: 10px !important;
        ;
    }
}


@media only screen and (min-width: 500px) {
    .container {
        width: 430px;
    }

    .navbar ul {
        width: 430px;

    }
}

@media only screen and (min-width: 950px) {
    .container {
        width: 860px;
    }

    .navbar ul {
        width: 860px;

    }
}

@media only screen and (min-width: 1450px) {
    .container {
        width: 1300px;
    }

    .navbar ul {
        width: 1300px;

    }

}

#myDiv,
#myDiv1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.resized-image {
    width: 400px;
    border-radius: 20px;
}

.bundles {
    color: white;
    display: flex;
    flex: 0 1 calc(20% - 20px);
    margin: 10px;
    flex-direction: column;
    align-items: center;

    font-family: Arial;
    font-size: 14px;
}

.bundle-title {
    width: 160px;
    float: left;
    padding: 7px 16px;
    background-color: rgb(0, 53, 80);
    margin: 10px;
    border-radius: 20px;
    border-style: solid;
    border-color: rgb(3, 40, 62);
    transition: background-color 0.2s;
}


.bundle-title:hover {
    background-color: rgb(11, 66, 94);
    cursor: pointer;
}

.bundle-price {
    max-width: 150px;
    float: right;
    padding: 7px 16px;
    background-color: rgb(0, 53, 80);
    margin: 10px;
    border-radius: 100px;
    border-style: solid;
    border-color: rgb(3, 40, 62);
    text-align: center;

}

.bundle-expires {
    max-width: 150px;
    float: right;
    padding: 7px 16px;
    background-color: rgb(0, 53, 80);
    margin: 10px;
    margin-top: 0px;
    border-radius: 100px;
    border-style: solid;
    border-color: rgb(3, 40, 62);
    text-align: center;
}

.expires-soon {
    background-color: rgb(201, 38, 44);
    border-color: rgb(98, 18, 21)
}

.info {
    margin-top: 10px;
    min-width: 400px;
    background-color: rgb(0, 78, 118);
    border-radius: 10px;
    height: 100px;
}