@font-face {
  font-family: robo_bold;
  src: url(Roboto-Italic-VariableFont_wdth\wght.ttf);
}

@font-face {
  font-family: robo_reg;
  src: url(Roboto-VariableFont_wdth\wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  border: none !important;
  outline: none;
  background: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
}

textarea {
  resize: none;
}

/* 32 inch TV */
@media (min-width: 1025px) and (max-width: 1200px) and (orientation: landscape) {
  body {
    font-size: 1.25rem;
  }
}
/* Cellphone and tables */
@media (max-width: 767px) and (orientation: portrait) {
  body {
    font-size: 1.25rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: robo_bold, Georgia, "Times New Roman", Times, serif;
}

p,
a {
  font-family: Arial, Helvetica, sans-serif;
}

/* setting default colours */
:root {
  --pink: rgb(196, 127, 137);
  --pink_light_bg: rgba(196, 127, 137, 0.5);
  --coral: rgb(243, 115, 87);
  --maroon: rgb(128, 0, 0);
  --greyScale: rgba(93, 93, 93, 0.5);
}

/* setting common elements */
.cta:link,
.cta:visited,
.cta:active {
  display: block;
  background: var(--pink_light_bg);
  width: 150px;
  padding: 1rem 0;
  text-align: center;
  font-weight: 700;
  transition: background 0.3s ease-in-out, transform 0.1s ease-in-out;
  color: #000;
  text-decoration: none !important;
}

.cta:hover {
  background: var(--pink);
  box-shadow: 3px 3px 3px var(--coral);
  color: #fff;
}

.cta:active {
  transform: scale(0.98);
}

.post_button {
  background: var(--pink_light_bg);
  border: none;
  outline: none;
  padding: 1rem 3rem;
  text-align: center;
  font-weight: 700;
  transition: background 0.3s ease-in-out, transform 0.1s ease-in-out;
  color: #000;
}

.post_button:hover {
  background: var(--pink);
}

.post_button:active {
  transform: scale(0.98);
}

.inputs {
  height: 3rem;
}
