/* Basic reset */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styling */
body {
    font-family: 'Comic Sans MS', sans-serif; 
    line-height: 1.6;
    background-color: #f0f8ff;
    color: #333;
}

/* Header styling */
header {
    background-color: #0077b6;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #0096c7;
}

.login-button a {
    transition: background-color 0.3s, transform 0.2s;
}

.login-button a:hover {
    background-color: #e63946;
    transform: scale(1.05);
}


/* Hero section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(to right, #48cae4, #00b4d8);
    color: #fff;
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Features section */
.features {
    display: flex;
    justify-content: space-around;
    margin: 2rem 1rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 30%;
    text-align: center;
}

.feature-card h2 {
    margin-bottom: 1rem;
    color: #0077b6;
}

.feature-card p {
    color: #555;
}
