body {
    background: linear-gradient(135deg, #c9d6ff, #e2e2e2);
    font-family: 'Poppins', sans-serif;
}


p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-align: center;
}

h2  {
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: auto;
}

#judul {
    font-size: 35px;
    color: rgb(11, 16, 45); 
    background: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
    padding: 10px;
    margin: 50px auto;
    height: 50px;
    width: 300px;
    text-align: center;
    border-radius: 20px;
}

#h41 {
    color: rgb(0, 0, 0);
    font-size: 18px;
    padding: 2px;
}
#h42 {
    color: rgb(0, 0, 0);
    font-size: 16px;
}


#button1 {
    background-color: #e1306c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    height: 50px;
    width: 100px;
}
#button1:hover {
    background-color: #c2275d;
    transform: scale(1.05);
}

#button2 {
    background-color: #010101;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    height: 50px;
    width: 100px;
}
#button2:hover {
    background-color: #111;
}

#button2:hover {
    background-color: #5146d8;
    transform: scale(1.05);
}

#button3 {
    background-color: #367b13;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    height: 50px;
    width: 100px;
}
#button3:hover {
    background-color: #47c309;
    transform: scale(1.05);
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}


#div1 {
    background-color: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 50px auto;
    padding: 25px;
    height: 420px;
    width: 325px;
    text-align: center;
}

#div2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
} 

#div2:hover {
    transform: scale(1.05);
}

.button-container {
    animation: fadein 1s ease;
}

@media (max-width: 600px) {
    #div2 {
        width: 90%;
        font-size: 14px;
    }
}


