@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: 10px;
    font-family: "Helvetica-Bold", sans-serif;
}

p {
    color: black;
    margin-right: 30px;
}

.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);
}