body {
    margin: 0px;
    padding: 0px;
    
    font-family:"Roboto", 'IBM Plex Sans', Tahoma, Geneva, Verdana, sans-serif;
    
    box-sizing: border-box;
    letter-spacing: 1px;
    text-wrap: wrap;
    
    
}


.introduction_card img {

    width: 100%;
    

}

details {
  
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

    padding: 1rem;
}

details:last-child {
    
    border-bottom: 1px solid #ddd;
    padding: 1rem;


}

details>summary img.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
    margin-left: auto;
    align-self: center;
}

details[open] summary span.icon {
    transform: rotate(180deg);

}

details[open] summary {

    border-bottom: 1px solid #ddd;
}

summary {
    display: flex;
    cursor: pointer;
    align-items: first baseline;


}

summary::-webkit-details-marker {
    display: none;
}





/* Unique wrapper */

.wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    

}
.thm-wrapper {
    width: 400px;
    
    border-radius: 10px;
    border: 1px solid #334155;
   
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Header section */
.thm-topbar {
    padding: 14px 24px;
    font-size: 14px;
   
    border-bottom: 1px solid #334155;
}

/* Body section */
.thm-content {
    padding: 28px 24px;
}

.thm-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.thm-content p {
    
    margin-bottom: 22px;
}

/* Button */
.thm-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid violet;
    
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.thm-btn:hover {
    
}

@media (max-width:750px) {
    .logo {
        padding-left: 0px;
    }


    .navmenu {
        display: none;
    }

    .hamburger {
        display: inline;
        padding: 5px;
        border: 1px solid #f1f1f1;
    }

    .section_container {
        width: 100%;
    }


    .introduction_card_inner img{
        width: 100%;
        height: auto;
    }


}
    















    

    