/* ================================================================
   True Blue Tour — Base
================================================================ */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}


.text-align-right{
    text-align: right;
}

.margin-top-10{
    display: flex;
    margin-top: 20px;
}
