@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');

body {
    font-family: 'Jua', sans-serif !important;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #333;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
}
.logo {
    display: flex;
    align-items: center;
}
.logo div {
    background-color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #444;
    font-weight: bold;
    margin-right: 10px;
}
.logo span {
    font-size: 1.5em;
    font-weight: bold;
}


.hero {
    background: white;
    color: white;
    text-align: center;
    padding: 10px 20px;
}

.main-container h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}
.keyword-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.keyword-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.2em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.keyword-box:hover {
    background-color: #ffd700;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.keyword-title {
    font-weight: bold;
    color: #444;
    font-size: 1.4em;
}
.keyword-desc {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}
footer {
    background-color: #444;
    color: #fff;
    padding: 15px 20px;
    position: relative;
}
.footer-menu {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;  
}
.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 8px 15px;
    background-color: #ffd700;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}
.footer-menu a:hover {
    background-color: #fff;
    color: #444;
}