@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Red Hat Text';
  --h1_font_size: 1.65rem;
  --h2_font_size: 1rem;
  --small_font_size: .75rem;
}

h1, h2, h3, h4, h5, h6, p, span, textarea, input, small {
  margin: 0;
  padding: 0;
}

button, input, textarea{
  outline: none;
}

h1{
  font-size: var(--h1_font_size);
}

small{
  font-size: var(--small_font_size);
}

.column_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.column_between {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.column_start {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.column_end {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.row_center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.row_between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.row_start {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.row_end {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

body {
  margin: 0;
  padding: 0;
}
