body, html
{
    margin: 0;
    padding: 0;
    background-color: #2d2929;
    color: white;
    font-family: 'Inknut Antiqua', serif;
    
}

button
{
    background: #e2dce7;
    cursor: pointer;
    font-family: 'Inria Sans', sans-serif;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.2s ease-in-out;
    padding: 0px 15px 0 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

p, li
{
    font-size: 1.1rem;
}

a
{
    color: black;
    text-decoration: none;
    background: #e2dce7;
    cursor: pointer;
    font-family: 'Inknut Antiqua', serif;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.2s ease-in-out;
    padding: 12px;
}

#demo
{
    display: flex;
    justify-content: center;
}

a:hover 
{
  transform: translateY(-4px);
}

header
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

header h1
{
    line-height: 1.2;
    margin: 5px;
}

header h3
{
    opacity: 50%;
}

.title-and-button
{
    display: flex;
    gap: 10px;

}

section
{
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    font-family: 'Inria Sans', sans-serif;
}

#client-timeframe
{
    display: flex;
    justify-content: space-between  ;
}

#problem-solution
{
    display: flex;
}

#problem-solution h2
{
    margin-top: 0;
}
.align-right
{
    text-align: right;
}

.divider
{
    width: 10px;
    background-color: #e2dce7;
    margin: 0 20px 0 20px;
}

#product-description
{
    display: flex;
    gap: 20px;
}

#product-description img
{
    object-fit: cover;       
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

#product-images
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#skills
{
    display: flex;
    gap: 20px;
}

#skills img
{  
  object-fit: contain;       
  width: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

#skill-text
{
    display: flex;
    flex-direction: column;
}

#skill-boxes
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}

.skill-box
{
    background: #e2dce7;
    font-size: 1.2rem;
    border: none;
    font-weight: bold;
    padding: 10px;
    color: black;
}

#showcase
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#showcase img
{
    width: 33%;
    height: 160px;
}

#additional-details
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lists
{
    display: flex;
}

.additional-list
{
    width: 50%;
}