 @font-face {
    font-family: Roboto;
    src: url(/Roboto-Regular.ttf);
}

    body {
      font-family: Roboto;
      margin: 0;
      background: #fafafa;
    }

    header {
      background: white;
      color: rgb(55, 55, 55);
      padding: 20px;
      text-align: center;
    }

    nav {
      background: green;
      text-align: center;
      border-style: solid;
      border-color: green;
      border-width: 1px;
    }

    nav a {
      color: white;
      margin: 0 12px;
      text-decoration: none;
      padding: 1rem;
      display: inline-block;
    }

    nav a:hover {
      color: green;
      background-color: white;
    }

    #logo_pizzeria_maestro {
      max-width: 50%;
    }

    .container {
      padding: 3rem;
      max-width: 1200px;
      min-height: 70%;
      margin: auto;
      text-align: center;
    }

    footer {
      background: green;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 40px;
    }