* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
.container {
    max-width: 1100px;
    padding: 0 1.5rem;
    margin: auto;
    overflow: block;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
}
.text-center {
    text-align: center;
}
.py-2 {
    padding: 2rem 0;
}
#all {
    background:#dad8d8; 
    position: relative;
}
.penet-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    
}
.penet img {
    margin-top: 160px;
    width: 350px;
    height: 350px;
    transition: all 0.5s ease;
    border-radius: 5px;
}
.penet img:hover {
    transform: scale(1.05);
}
.penet h1 {
    font-size: 14px;
}
.sub-title {
    font-size: 40px;
    color: black;
    position: absolute;
    top: 90px;
    font-weight: bold;
}