body {
    font-family: 'IBM Plex Sans', sans-serif;
    height: 100vh;
    margin: 0;
}



@media only screen and (min-width:1080px) {
    .ph {
        display: none;
    }
    .navbar_internal {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding-right: 30px;
        align-items: center;
    }
    .ds {
        display: block;
    }
    .content-container {
        backdrop-filter: blur(10px);
        width: 70%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }
    
}

@media only screen and (max-width:1080px) {
    .ph {
        display: block;
    }
    .navbar_internal {
        width: 100%;
        left: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }
    .ds {
        display: none;
    }
    .content-container {
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
    }
    
}



.navbar {
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    z-index: 100; 
}





.navbar_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 60%;
    text-align: center;
    height: 100%;
    color: black;
    text-decoration: none;
    padding: 10px;
}

.navbar_buttons:hover {
    text-decoration: underline;
    opacity: 100%;
}




.main-image {
    margin-top: 8rem;
    height: 20%;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
}

.card {
    width: 600px;
    justify-content: space-between;
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.platform-text {
    font-weight: 300;
    font-size: medium;
}

.project-title {
    font-weight: 400;
    font-size: x-large;
}

.card-image-small {
    width: 100px;
    margin-top: 70px;
    height: 100px;
}

.card-image-large {
    width: 250px;
    margin-top: 70px;
    height: 100px;
}

.card-image-medium {
    width: 150px;
    margin-top: 70px;
    height: 150px;
}


.background {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

}
.details-section {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: right 0.5s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.details-section.active {
    right: 0;
}

.close-details {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

body.detail-open {
    overflow: hidden;
}

.buttons {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

.buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buttons a img {
    width: 20px;
    height: 20px;
}

.buttons a:hover {
    background-color: #555;
}

.github {
    display: flex;
    align-items: center;
}

.github img {
    width: 20px;
    height: 20px;
}

.github a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.github a:hover {
    background-color: black;
    color: white;
}