body {
  background: #ec4b5a;
  font-family: 'Work Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body * {
  color: #000000;
}

.navbar-brand span {
  color: white;
}

@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}

p {
  font-weight: 500;
}

.table-min-width-1000 {
  min-width: 1000px;
}

.table-headings-lg th {
  font-size: 2rem;
}

.table-bottom-border-3 th, .table-bottom-border-3 td {
  border-bottom-width: 3px;
}

.navbar-brand span {
  max-width: 0;
  transition: all 0.8s;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
}

.navbar-brand:hover span {
  max-width: 20px;
  transition: all 0.8s;
}

footer {
  background: url("/assets/images/tepih.png") no-repeat bottom;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  footer {
    background: url("/assets/images/tepih-small-screens.png") no-repeat right top;
    background-size: cover;
    flex: 1;
    display: flex;
    align-items: flex-end;
  }
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.rounded-40px {
  border-radius: 40px !important;
}

.font-weight-regular {
  font-weight: 500;
}

.fs-18 {
  font-size: 18px;
}

a:hover {
  color: inherit;
}