body {
    background-color: #2d2f35;
    color: white;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 100vh;
}

.header-section {
    background-size: cover;
    background-position: center;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.header-subtitle {
    font-size: 2.5rem;
    color: #f9b233;
    font-weight: 700;
    text-align: center;
}

.menu-card {
    display: block;
    background-color: #394a52;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    color: white;
    height: 100%;
    transition: transform 0.3s;
    text-decoration: none;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card i {
    font-size: 3rem;
    color: #a6ff00;
    margin-bottom: 15px;
}

.wrapp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer {
    position: relative;
    width: 100%;
    bottom: 0;
    background-color: #2b2b2b;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

.footer a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: #f9b233;
}

.karantina-kuat {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: right;
}

.karantina-kuat span {
    color: #f9b233;
    border: 3px solid #f9b233;
    padding: 5px 15px;
    border-radius: 5px;
}

@media (min-width: 1200px) {
    .karantina-kuat img {
        position: relative;
        width: 400px;
    }
}

@media (max-width: 1200px) {
    .header-section {
        margin: 30px 0;
    }
    .karantina-kuat img {
        position: relative;
        width: 150px;
        margin: 35px 0;
    }
}