/* Aici e fisierul de style */
/* Fontul cu care e scris textul */
body {
    font-family: Arial, sans-serif;
}

/* bara de navigatie */
.navbar {
    background-color: #0b71e6;
    overflow: hidden;
}

/* scrisul din bara de navigatie */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: larger;
}

/* cum apare cand dai cu mouse-ul peste text */
.navbar a:hover {
    background-color: #63cff7;
    color: black;
}

.content {
    padding: 16px;
}

/* style pt titlu */
h1 {
    text-align: center; /* Specifically center-aligns all h1 elements */
    color: #0b71e6;
    font-family: Georgia;
}

/* style pt titlu prin paragrafe */
h3 {
    color: #0b71e6;
}

/* footerul de la pagina */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #0b71e6;
    color: white;
    text-align: center;
    padding: 1px;
    font-size: small;
}
