@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
:root {
  --color-background-mainpage: #191A1A;
  --color-orange: orange;
  --color-blue: blue;
  --color-pink: pink;
  --color-purple: purple;
}

body{
  background-color: var(--color-background-mainpage);
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins';
  color: white;
}

.agradecimentos-page {
  /*background-color: var(--color-purple);*/
  transform: translateX(-50%);
  left: 50%;
  width: 600px;
  height: auto;
  position: absolute;
  padding: 20px;
}

.title {
    margin-top: 10px;
    font-size: 30px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.descricao {
  text-align: center;
}

.lista {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    font-size: 13px;
}

dt {font-weight: 600;}