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

:root {
  /* colors */
  --text-black: #282828;
  --text-white: #ffffff;
  --text-gray: #484848;

  /* font weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;

  /* Font Size */
  --fontSize-sm: 16px;
  --fontSize-md: 20px;
  --fontSize-l: 36px;
}

/* SPECIAL CLASSES */
.pd-outer {
  padding: 1rem 7rem 1rem 7rem;
}
body {
  max-width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}
#wrapper {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.max-w-bg-br {
  background-color: #ffcd9e;
  max-width: 1440px;
}
.top {
  display: flex;
  justify-content: space-between;
}
#left_side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
}
#left_side h1 {
  font-size: 36px;
  line-height: 54px;
  color: var(--text-black--);
  font-size: var(--fontSize-l);
}
article {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
article a {
  font-size: 20px;
  font-weight: var(--font-weight-extra-bold);
}
#para {
  font-size: var(--fontSize-md);
  line-height: 32px;
  font-weight: var(--font-weight-medium);
  color: var(--text-gray);
  width: 80%;
}
#form {
  display: flex;
  gap: 1rem;
}
input {
  display: inline-block;
  height: 64px;
  font-size: var(--fontSize-md);
  max-width: 344px;
  border: 4px solid var(--text-black);
  padding: 1rem;
  border-radius: 8px;
  font-weight: var(--font-weight-bold);
}
button {
  display: inline-block;
  height: 64px;
  width: 216px;
  font-size: var(--fontSize-md);
  background-color: var(--text-black);
  border-radius: 8px;
  color: var(--text-white);
  font-weight: var(--font-weight-bold);
  outline: none;
  cursor: pointer;
}
#short_note {
  text-align: left;
  font-size: var(--fontSize-sm);
  color: var(--text-white);
  font-weight: var(--font-weight-medium);
  margin-left: 2rem;
}
.top #right_side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.top #right_side img {
  width: 100%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--text-black);
  padding: 2rem 10rem 3rem 10rem;
  color: var(--text-white);
  margin-top: -3rem;
}
footer .right_side ul li {
  text-align: right;
}
footer .right_side a {
  float: right;
  font-size: var(--fontSize-md);
  font-weight: 400;
}
ul li {
  list-style: none;
  line-height: 32px;
  font-size: var(--fontSize-md);
  font-weight: 400;
}
