@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

* {
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 30px;
}

html,
body {
  background: #fafafa;
  height: 100%;
}

input,
select,
button {
  height: 50px;
}

.form-control {
  border: solid rgba(0, 0, 0, 0.1) 1px;
}

.signupContainer {
  min-height: 100vh;
  height: 100%;
  background-size: cover;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/bg2.jpg') center center no-repeat;
}

.dash {
  min-height: 100vh;
  height: 100%;
}

.signupRound {
  border-radius: 20px;
}

.bold {
  font-weight: bold;
}

.hoverNav:hover {
  background: rgba(0, 0, 0, 0.5);
}

a {
  text-decoration: none;
}

table {
  width: 100%;
  text-align: center;
}

table th,
td {
  height: 50px;
}

td {
  min-height: 50px;
}

table tr {
  height: 50px;
  border-top: solid 1px rgba(0, 0, 0, 0.05);
}

.custCalendar tr {
  height: 30px;
  border: solid 1px #ffff;
}

.custCalendar {
  font-size: 13px;
}

.custCalendar th,
td {
  height: 30px;
}

@media screen and (max-width: 768px) {
  * {
    font-size: 14px;
  }

  h1 {
    font-size: 25px;
  }

  input,
  button,
  select {
    height: 40px;
    line-height: 40px;
  }
}

@media screen and (max-width: 576px) {
  * {
    font-size: 13px;
  }

  h1 {
    font-size: 20px;
  }
}
