/*genereal_style*/
/*====================================================================*/
  /*COLORS*/
/*====================================================================*/

:root {
  --accent-pink: #b8749b;      /* Main accent (text like PORTFÓLIO) */
  --light-pink: #f3cde1;       /* Decorative backgrounds/elements */
  --very-light-pink: #f9eef6;  /* Page background */
  --dark-grey: #595959;        /* Text or nav/footer background */
}

/*====================================================================*/
  /*FONTS*/
/*====================================================================*/


/*====================================================================*/
/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:'Roboto';
  background-color: white;
  color: var(--light-pink);
  font-family: Arial, sans-serif;
  padding-top: 10px; /* prevent content under the fixed navbar */
}

hr{
  height: 1px;
}