/* styles.css */
html, body {
    background-color: #F4B6A6;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}



.navbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.auth-buttons .login {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 24px;
}



.hero {
    background-color: #FCE762;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    margin-right: 20px;
    font-size: 24px;
    font-weight: bold;
}

.explore-button {
    background-color: #F45B69;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 4px 4px 0px black;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.feature {
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    box-shadow: 4px 4px 0px black;
}

.feature p {
    padding-left: 250px;
}

.feature:hover {
    transform: scale(1.05); /* 放大5% */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5); /* 提高阴影 */
}

.blue { background-color: #A0C4FF; }
.yellow { background-color: #FFD166; }
.purple { background-color: #DAB6FC; }

footer {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
}

footer a{
    color: #000000;
}
