@import url('https://fonts.cdnfonts.com/css/sf-mono');

/*************************
* Common
**************************/

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html {
  height: 100%;
  overflow: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  margin: 0;
  /* font-display: swap; */
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--quinary__color);
  font-family: var(--font__family);
}
main {
  margin: 0;
  padding: 0;
  position: relative;
}

section {
  display: flex;
  width: 80%;
  margin: 0px auto;
  padding: 0px 0 50px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media screen and (max-width: 676px) {
  section {
    width: 100%;
    margin: 0px;
    padding: 50px 20px;
    overflow: hidden;
  }
}

.btn {
  font-size: 1rem;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: none;
  padding: .5rem 1rem;
  background: var(--secondary__color);
  color: var(--quinary__color);
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s ease;
  width: fit-content;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
}
h1 {
  font-size: var(--h1__banner_title);
  color: var(--primary__color);
  font-weight: 500;
}
h2 {
  font-size: var(--h2__title);
  color: var(--primary__color);
}
h3 {
  font-size: var(--h3__subtitle);
  color: var(--secondary__color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
h4 {
  font-size: var(--h4__subtitle);
  color: var(--secondary__color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
p{
  font-size: var(--p__Paragraph);
  color: var(--quaternary__color);
  text-align: justify;
  font-weight: 500;
}
