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

/* notification */
.notification {
    margin: 0;
    overflow: hidden;
    background-color: #333;
    /* position: fixed;
    bottom: 0; */
    width: 100%;
}

.notification a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.notification a:hover {
    background: #f1f1f1;
    color: black;
}
/* notification */

/* logobar */
#logobar {
    margin: 0px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
}

.logoIcon {
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.logoIcon img {
    height: 45px;
    width: 200px;
}
/* logobar */

/* script */
#script {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    /* margin-bottom: 80px; */ margin: 0;
}
.card {
    margin: 15px;
    display: flex;
    flex-wrap: wrap;
    width: 300px;
    height: 350px;
    border: grey 1px solid;
    box-shadow: gray 2px 2px 3px;
    border-radius: 15px;
}
.card img {
    width: 100%;
    height: 250px;
    border-radius: 8px 8px 0px 0px;
    margin-bottom: 13px;
}
.cardText {
    height: 100px;
    margin-left: 10px;
    margin-bottom: 13px;
    align-items: stretch;
}
/* script */

/* navbar */
#navbar {
    margin: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(180, 149, 149, 0.664);
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover {
    border-radius: 10px;
    background-color: rgba(60, 219, 140, 0.637);
}
#me {
    background-color: rgba(60, 219, 140, 0.637);
}
/* navbar */

/* pagination menu */
.pagination-menu {
    display: flex;
    justify-content: center;
    margin: 0;
}

.pagination-menu button {
    all: inherit;
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination-menu button.active {
    background-color: #4caf50;
    color: white;
    border-radius: 5px;
}

.pagination-menu button:hover:not(.active) {
    background-color: #ddd;
    border-radius: 5px;
}
/* pagination menu */

