*{
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent; 
}
body{
    font-family: "Product Sans";
    margin: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(184, 213, 185), rgb(133, 216, 151));
}
html{
    scroll-behavior: smooth;
}
.title{
    text-align: center;
    color: rgb(27, 90, 46);
}

.uiss{
    width: 310px;
    border-radius: 15px;
}
.project-section{
    display: grid;
    grid-template-areas: "picture description"
                         "features features";
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.project-ui{
    display: flex;
    flex-direction: column;
    background-color: rgb(69, 166, 69);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 310px;
    grid-area: picture;
}
.project-des{
    border-radius: 15px;
    background-color: rgb(69, 166, 69);
    width: 310px;
    padding: 20px;
    grid-area: description;
}
.ui{
    color: rgb(208, 248, 208);
    text-align: center;
}
.des{
    background-color: lightgreen;
    padding: 15px;
    border-radius: 15px;
    color: rgb(0, 53, 0);
    text-align: justify;
}
.project-features{
    background-color: rgb(69, 166, 69);
    border-radius: 15px;
    grid-area: features;
    padding-top: 10px;
}
.project-feat{
    display: grid;
    grid-template-areas: "feature bugs";
    justify-content: center;
    gap: 10px;
    padding: 15px;
}
.features{
    grid-area: feature;
}
.bugs{
    grid-area: bugs;
}
.pcard{
    background-color: lightgreen;
    width: 300px;
    text-align: center;
    border-radius: 15px;
    padding: 15px;
}
.release{
    padding: 10px;
    background-color: rgb(0, 92, 0);
    border-radius: 15px;
    text-align: center;
    color: rgb(178, 231, 178);
}
.documentation-card{
    display: flex;
    flex-direction: column;
    background-color: rgb(69, 166, 69);
    text-align: center;
    border-radius: 15px;
    padding-bottom: 25px;
}
.link{
    text-decoration: none;
    background-color: white;
    color: darkgreen;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}
.link:hover{
    background-color: darkgreen;
    color: white;
    padding: 13px;
    border-radius: 10px;
}
.Score{
    background-color: darkgreen;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    color: rgb(182, 232, 182);
    transition: all 0.3s ease;
    cursor: pointer;
}
.Score:hover{
    padding: 8px;
    border-radius: 10px;
}
.goback{
    padding: 8px;
    margin: 5px;
    margin-top: 5px;
    border-radius: 20px;
    border: none;
    background-color: darkgreen;
    color: rgb(182, 232, 182);
    width: 75px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(182, 232, 182);
    font-family: "Product Sans";
    font-size: large;
}
.goback:hover{
    padding: 10px;
    border-radius: 15px;
    background-color: lightgreen;
    color: darkgreen;
}
@media(max-width: 768px){
    .project-section{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .project-features{
        width: 350px;
    }
    .project-feat{
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
}