/* Resetting default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Centering the logo */
.logo {
  margin-bottom: 20px;
}

/* Centering the text */
.text-center {
  text-align: center;
  font-family: lato, sans-serif;
}

/* Adding some margin to the top of the text */
.mt-3 {
  margin-top: 15px;
}

/* Adding some padding to the body */
body {
  padding: 20px;
}

/* Adding a background color */
.bg-light {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  height: 100vh; /* Full height of the viewport */
}

/* Centering the container */
.container {
  max-width: 1200px;
  margin: auto;
  margin-top: auto;
}

/* Adding some spacing between elements */
.row {
  margin-top: 20px;
}

/* Changing font sizes */
h1 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

/* Adding emphasis to secondary text */
.text-medium-emphasis {
  color: #6c757d; /* dark grey color */
}

.separator {
  border: 1px solid #dddddd;
  width: 100%; /* Adjust this value based on your needs */
  height: 1px;
  margin: 10px;
}
