/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #e8efff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #222;
}

/* MENU NAV */
.navbar {
    width: 100%;
    background: #2266ff;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

/* PAGE CONTENT */
.page {
    padding: 25px 35px;
}

/* HOME TITLE */
.home-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* HOME SUBTEXT */
.home-text {
    font-size: 16px;
    color: #444;
}
