body {
    font-family: Inter;
    padding: 20px 40px;
}
a {
    color: #000000;
    text-decoration: none;
}

p, li, td, th {
    font-size: 14px;
}
h1 {
    font-size: 24px;
    margin: 0 0 10px 0;
}
h2 {
    font-size: 20px;
}
h3, h4 {
    font-size: 18px;
}
header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
header img {
    height: 140px;
}
header p {
    margin: 0;
}
.container {
    display: flex;
    justify-content: space-around;
}
nav {
    border-right: 2px solid #D9D9D9;
    height: fit-content;
    margin-right: 20px;
    padding: 0 20px 100px 0;
}
nav li {
    margin-bottom: 15px;
}
.content {
    width: 75%;
    height: calc(100vh - 215px);
    overflow: scroll;
}
td, th {
    padding-bottom: 15px;
    vertical-align: top;
    text-align: start;
}
ul ul {
    list-style-type: initial;
}
.bold {
    font-weight: bold;
}
.tab {
    margin-left: 20px;
}

#righttable {
    border-collapse: collapse;
    border-spacing: 0px;
    width: 100%;
    table-layout: fixed;
  }
  #righttable th {
    padding: 5px;
    border: 1px solid black;
    text-align: center;
    vertical-align: middle;
  }
  #righttable td {
    padding: 5px;
    border: 1px solid black;
  }
  .rightcolumn {
    text-align: center;
    vertical-align: middle;
  }

  .buttondl {
    width: 130px;
    height: 50px;
    background-color: #61C4CE;
    border-radius: 4px;
    border-color: #61C4CE;
    padding: 15px;
  }

  .divflex {
    display: flex;
    flex-direction: row;
  }

  .icondl {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    margin-top: -10px;
  }

  .buttondl a {
    color: white;
  }

  .divImg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
  }

  .imgAPropos {
    width: 500px;
  }
  

@media only screen and (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        display: unset;
    }
    nav {
        padding: 0;
        border-right: none;
    }
    header {
        flex-direction: column;
        text-align: center;
    }
    .content {
        width: 100%;
        height: unset;
        overflow: unset;
    }
}