p {
        color: #152426;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      }

      a {
        color: #152426;
        text-decoration: none;
      }

      header {
        background-color: rgba(239, 241, 242, 0.5);
        height: 50px;
        display: flex;
        flex-direction: row;
        color: #152426;
        align-items: center;
        box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.4);
        border-radius: 5px;
        margin-top: 5px;
        margin-bottom: 40px;
      }      
      
      header .logo {
        margin-left: 5px;
        margin-right: 5px;
        height: 50px;
      }
      
      header .logo:hover {
        animation: grow 0.2s ease-out;
        transform: scale(1.2);
      }

      header .title {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 25px;
        font-weight: bold;
        text-decoration: none;
      }

      header .navigation {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: end;
      }
      
      header .nav-element {
        font-size: 20px;
        padding-right: 20px;
        text-decoration: none;
      }

      header .nav-element:hover {
        animation: grow 0.2s ease-out;
        transform: scale(1.1);
        text-decoration: underline;
      }

      body {
        background-image: url("../images/background.png");
      }

      article {
        background-color: rgba(239, 241, 242, 0.5);
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        border-radius: 5px;
        box-shadow: 5px 5px 20px 1px rgba(0, 0, 0, 0.4);
        display: block;
        flex-direction: row;
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 5%;
        padding-right: 5%;
        line-height: 1.4;
        padding-top: 10px;
        padding-bottom: 10px;
      }

      article .article-header{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
      }

      article h1 {
        color: #152426;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5px;
      }

      article h2 {
        color: #152426;
        margin-top: 19px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5px;
        text-align: center;
      }
      
      article .logo-box {
        height: 200px;
        width: 200px;
        margin-right: 40px;
        align-self: center;
      }

      article .logo {
        object-fit: scale-down;
        height: 100%;
      }

      article .header-text {
        width: 1fr;
      }

      article .main-text {
        width: 100%;
      }
      article p {
        font-size: 16px;
      }
      
      footer {
        background-color: rgba(239, 241, 242, 0.5);
        height: 50px;
        display: flex;
        flex-direction: row;
        color: #152426;
        align-items: center;
        box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.4);
        border-radius: 5px;
        margin-top: 40px;
        margin-bottom: 5px;
      }

      footer .c {
        font-size: 20px;
        padding-left: 10px;
        padding-right: 10px;
      }
      
      footer .contact {
        margin-left: auto;
        padding-left: 10px;
        padding-right: 10px;
      }

      footer a:hover {
        animation: grow 0.2s ease-out;
        transform: scale(1.1);
        text-decoration: underline
      }
      
      footer .satire {
        margin-left: auto;
      }