@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");
/* Palette of favourite Colors */
:root {
  --primary-background-color: #ffffff;
  --secondary-background-color: rgba(223, 223, 223, 1);
  --third-background-color: #eeeeee;
  --fourth-background-color: #ff5722;
  --primary-text-color: #212121;
  --secondary-text-color: #757575;
  --primary-button-color: #ffde2e;
  --divider-color: #bdbdbd;
  --icon-color: #000000; }

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

body {
  background: var(--secondary-background-color);
  color: var(--primary-text-color);
  line-height: 1.6;
  font-family: "Open Sans", sans-serif; }

.Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  width: 1000px;
  max-width: 90%;
  margin: auto;
  padding: 1.18rem; }

.section {
  background-color: white;
  padding: 5rem;
  margin: 1rem; }

a {
  color: red;
  text-decoration: none; }

h1,
h2 {
  font-weight: 300;
  line-height: 1.4; }

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.06rem;
  padding-bottom: 0;
  letter-spacing: 0.02rem;
  line-height: 1.651rem; }

/* HEADINGS */
h1 {
  text-transform: uppercase;
  padding-top: 2rem;
  font-size: 1.2rem; }

h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 3.243rem;
  /* Computed - 55px */
  font-size: 324%;
  /* Computed - 55px */
  letter-spacing: 0.118rem;
  /* Computed - 2px */
  letter-spacing: 0.34px;
  /* Computed - 2px */
  line-height: 3.243rem;
  /* Computed - 55px */
  padding-bottom: 1rem;
  padding-top: 1rem; }

h3 {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  /* Computed - 35px */
  font-size: 206%;
  /* Computed - 35px */
  letter-spacing: 0.118rem;
  /* Computed - 2px */
  line-height: 2.064rem;
  /* Computed - 35px */
  padding-bottom: 1rem;
  padding-top: 3rem; }

h3.upperCase {
  text-transform: uppercase;
  line-height: 1.474rem;
  /* Computed - 25px */ }
