@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #282828;
  --secondary-color: #dbc4ff;
  --tertiary-color: #b995f5;
  --fourth-color: #3e3e3e;
  --border-color: white;
  --text-color: #282828;
  --text-color-2: white;
  --hr-color: #2596be;
}

main p:first-child {
  margin-top: 150px;
  font-size: 25px;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 30px;
}
main p {
  color: var(--text-color-2);
  font-size: 20px;
}
main a {
  color: var(--text-color-2);
  text-decoration: none;
}
main a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

section:last-child {
  margin-bottom: 150px;
}