/* pricelist2.css v1.2 */
*{
    margin: 0;

    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.container{
    width: 100% auto;
    height: relative;
    background-color: white;
    background-size: 100%;
    background-position: left;
    padding: 0 8%;
    background-attachment: relative;
}
/* nav */
nav{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;    
}
.logo{
    width: 250px;
    cursor: pointer;
    padding-top: 25px;
}
nav ul{
    flex: 1;
    font-size: 25px;
    text-align: right;
    padding-right: 30px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}
nav ul li a{
    color: gray;
    text-decoration: none; 
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: gray;
    transition: width 0.3s;
}
nav ul li a:hover::after{
    width: 80%;
}
/* navend */
#judul{
    color: gray;
    font-size: 70px;
    font-weight: 60px;

}
.row a{
    color: gray;
    font-size: 49px;
    border: 2px solid gray;
    padding: 6px 12px;
    text-decoration: none;
    display: inline-block;
    width: 600px; /* Atur lebar sesuai kebutuhan */
    text-align: left;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .container {
        padding: 0 2%;
    }
    .logo {
        width: 120px;
        padding-top: 10px;
    }
    nav ul {
        font-size: 14px;
        padding-right: 5px;
    }
    #judul {
        font-size: 32px;
    }
    .row a {
        font-size: 16px;
        width: 100%;
        padding: 6px 8px;
    }
}
