@font-face {
  font-family: 'Visby';
  src: url('../assets/fonts/VisbySemibold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Visby';
  src: url('../assets/fonts/VisbyHeavy.otf') format('opentype');
  font-weight: bolder;
  font-style: normal;
}

body {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #0B0B0C;
  background-color: #FBFBFB;
  margin: 0px;
}

h1 {
  font-family: 'Visby';
  font-size: 42px;
  font-weight: bolder;
}

h2 {
  font-family: 'Visby';
  font-size: 34px;
  font-weight: bolder;
}

#container {
  padding: 47px 34px;
}

#header {
  padding-bottom: 40px;
  border-bottom: 1px solid #BBBBBB;
}

.button-basic {
  font-size: 18px;
  color: #DC1F1F;
  padding: 8px 24px;
  border: 2px solid #DC1F1F;
  box-sizing: border-box;
  border-radius: 50px;
}

.button-red {
  font-size: 18px;
  background-color: #DC1F1F;
  color: white;
  padding: 8px 24px;
  border: 2px solid white;
  box-sizing: border-box;
  border-radius: 50px;
}

.w-100 {
  width: 100%;
}

.w-fit {
  width: fit-content;
}

.flex-btwn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.cursor-pointer {
  cursor: pointer;
}

a {
  text-decoration: inherit;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

button,
input[type="submit"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

button,
input {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}