* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orpheus Pro';
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f5f5f5;
}

.navbar {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 150px;
}

.navlinks {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-end;
    font-family: 'sans-serif';
}

h1 {
    font-size: 2.5em;
    margin: 20px 0;
    color: #333;
}

.nav {
    margin: 20px 0;
}

.nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 1.1em;
}

.nav a:hover {
    color: #007bff;
}

.section {
    margin: 40px 0;
    display: none;
}

.section.active {
    display: block;
}

.items {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.item {
    background-color: #e0e0e0;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item button {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: bottom 0.3s ease;
}

.item:hover button {
    bottom: 180px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
#modal-body{
    height: 200px;
    width: 500px;
}
.modal-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: whitesmoke;
    padding: 20px;
    border-radius: 0px;
    line-height: 50px;
    max-width: 500px;
    width: 90%;
    text-align: left;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
@media (max-width: 768px){
    .navbar {
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 0px;
    }   
    .nav{
    margin: 20px 0;
    }
    .item{
        display: grid;
        grid-template-columns: 2, 1fr;
        width: 340px;
    }
}