* {
    padding: 0px;
    Margin: 0px;
    border: 0px;
    box-sizing: border-box;

}

.body {
    background-color: black;
    font-family: 'Poppins', sans-serif;
    
}

.navbar {
    width: 100vw;
    background-color: rgb(0, 0, 0);
    display: flex;


}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
    margin: 0 auto;
    font-size: 20px;

}

.navbar ul a {
    color: white;
    text-decoration: none;
}

.navbar ul a:hover {
    color: red;
    text-decoration: none;
}

.navbar img {
    width: 80px;
    height: auto;
}






.grid-container {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100vw;
    row-gap: 0px;
    padding: 0px;
    margin: 0px;
    background-color: black;


}

.grid-item {
    flex: 0 0 20vw;
    padding: 0;
    margin: 0;

}

.center-button {
    position: absolute;
    z-index: 10;
    transform: translate(335%, 400%);


}

.center-button button {
    height: 70px;
    width: 200px;
    Z-index: 10;
    color: rgb(255, 255, 255);
    background-color: black;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.grid-item img {

    width: 20vw;
    height: 220px;
    object-fit: cover;

}