body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    box-sizing: border-box;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}
.container {
    flex: 1 1 300px;
    margin: 10px;
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.5);
    text-align: center;
    min-width: 250px;
}
img {
    width: 60%;
    height: auto;
    border-radius: 10px;
}
h2 {
    color: #333;
}
p {
    color: #555;
}
button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #0056b3
}
.teks {
    position: fixed;
    right: 10px;
    bottom: 11px;
    color: #000000;
    font-size: 12px;
    border-radius: 4px;
}

.teks2 {
    position: fixed;
    left: 10px;
    bottom: 11px;
    color: #000000;
    font-size: 12px;
    border-radius: 4px;
}