body {
    font-family: Arial, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: #333;
    color: white;
    z-index: 100;

    display: flex;
    align-items: center;
    align-content: stretch;
}

.navbar-logo {
    margin-left: 20px;
}

.navbar-logo img {
    width: 40px;
    height: 40px;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 80px;
    margin: auto;
    width: 95%;
    margin-top: 5vh;
}

.card {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .5);
    border-radius: 10px;
    width: 240px;
    height: 240px;
    margin: 20px;
    position: relative;
    cursor: pointer;
    color: white;
    background-color: rgb(222, 170, 255);
    text-align: center;
    transition: transform .2s, box-shadow .2s;

    @media screen and (max-width:768px) {

        width: 155px;
        height: 155px;
        margin: 10px;

    }
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px30 px rgba(0, 0, 0, .7);
}

.card img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.card-title {
    color: black;
    font-size: 20pt;
    text-align: center;
    padding-top: 10%;
}