@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

body{
    color: linen;
}
.pcontainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 100px;
}

.card{
    width: 500px;
    height: auto;
    background-color: beige;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px;
}
*{
    box-sizing: border-box;
    font-family: 'JetBrains Mono';
}

.card img{
    width: 100%;
    height: auto;
}

.content{
    padding: 16px;
}

.content h3{
    color: black;
    font-size: 30px;
    margin-bottom: 10;
}

.content p{
    color: black;
    font-size: 20px;
    line-height: 1.2px;
}

.content button{
    color: white;
    padding: 0 10px;
    background-color: black;
    border-radius: 10px;    
    /* width: 100%; */
    width: max-content;
    height: 5vh;
    border-color: green;
}

@media screen and (max-width: 600px) {
    .card {
        border-radius: 20px;
    }
    .content h3, p {
        margin-top: 0;
    }
    .content button{
        width: 100%;
        height: max-content;
        padding: 10px 0px;
    }
    
}
.content button:hover{
    background-color: green;
    border-color: green;
    color: white;    
}


/* Navbar */

.home-icon {
    font-size: 24px;
    text-decoration: none; 
    color: black; 
}
/* Navbar styles */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white; 
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
    padding: 10px 20px;
}
  
.navbar-div {
    display: inline-block;
}
.navbar-right {
    float: right;
}
.navbar a {
    display: inline-block;
    color: black; 
    text-decoration: none; 
    font-size: 20px;
}
  
.navbar a:hover {
    color: crimson;
}

.b {
    display: none;
}