body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "ff-netto-web", "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; 
  
}

.container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.content {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.footer {

    background: #0065bb;
    background: -moz-linear-gradient(left, #0065bb 0%, #00aae3 100%);
    background: -webkit-linear-gradient(left, #0065bb 0%, #00aae3 100%);
    background: linear-gradient(to right, #0065bb 0%, #00aae3 100%);
    padding: 20px 0px; 
  padding: 20px;
  text-align: center;
}
.logo{
  margin: 0 auto;
  max-width: 400px;
}

.logo-exeltis{
    max-width: 160px;
    margin: auto; 
    padding-bottom: 1rem;
}
.footer ul {
    list-style: none; }
   .footer ul li {
      list-style: none;
      color: #FFF;
      font-weight: 100;
      height: 20px; }
   .footer ul li a {
        color: #FFF;
        text-decoration: none; }
      .footer ul li a:hover {
          text-decoration: underline; }
  
          .rounded-btn {
            border-radius: 20px; /* Justera värdet för att ändra rundningen */
            padding: 10px 20px; /* Lägg till padding för att ge knappen utrymme */
            background-color: #0164bc; /* Ändra bakgrundsfärg */
            color: white; /* Ändra textfärg */
            border: none; /* Ta bort standardramen */
            cursor: pointer; /* Visa en handpekare vid hover */
            font-size: 1rem;
          }