@font-face {
    font-family: "Wingdings";
    src: url("fonts/wingding.ttf") format("truetype"),
        url("fonts/wingding.ttf") format("truetype");
}
@font-face {
    font-family: "Barcode";
    src: url("fonts/code128.ttf") format("truetype"),
        url("fonts/code128.ttf") format("truetype");
}
@font-face {
    font-family: "Helvetica";
    src: url("fonts/helvetica/Helvetica.ttf") format("truetype"),
        url("fonts/helvetica/Helvetica.ttf") format("truetype");
}
@font-face {
    font-family: "Helvetica-Bold";
    src: url("fonts/helvetica/Helvetica-Bold.ttf") format("truetype"),
        url("fonts/helvetica/Helvetica-bold.ttf") format("truetype");
}
body {
    background-color: lightblue;
    font-family: "Helvetica", sans-serif;
}
h1 {
    color: navy;
    margin-left: 20px;
    font-family: "Helvetica-Bold", sans-serif;
}

h2 {
    margin-left: 20px;
    font-family: "Helvetica", sans-serif;
}

p {
    color: black;
    margin-left: 10px;
}

.nav-container {
    position: fixed;
    top: 20px;
    right: 20px;
}

.login {
    background-color: navy;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: sans-serif;
    transition: background 0.2s;
}

.login:hover {
    background-color: rgb(0, 0, 170);
}