body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* background-color: #EAEAEA; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.info {
    text-align: center;
    background: rgb(231, 166, 3);
    color: #D0021B;
    padding: 2px;
    border-radius: 10px;
    margin: 0 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 80px;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    margin: 0 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 150px;
    animation: fadeIn 2s ease-in-out;
}

.bendera {
    width: 200px;
    margin-top: 20px;
}

h2 {
    margin: 20px 0;
    font-size: 1.8em;
    color: #D0021B;
    animation: bounceIn 2s ease-in-out;
}

.tagline {
    font-size: 1.2em;
    color: #333;
    margin: 20px 0;
    animation: fadeIn 3s ease-in-out;
}

.tagline_bottom {
    font-size: 1em;
    color: #605f5f;
    margin: 0;
    animation: fadeIn 3s ease-in-out;
}

.explore-btn {
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #D0021B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #A00117;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounceIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
