body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.container.d-flex {
  height: calc(100vh - 16px);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.logo {
  margin-bottom: 40px;
}
.flex-column {
  flex-direction: column;
}
.border {
  border: 1px solid #dbdbdb;
  width: 800px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.border p {
  margin-bottom: 20px;
  font-size: 18px;
}
.icon-domicile,
.icon-consultation,
.icon-teleconsultation {
  background-image: url("images/domicile.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 45px;
  margin-bottom: 15px;
  display: inline-flex;
}
.icon-consultation {
  background-image: url("images/consultation.svg");
  width: 45px;
}
.icon-teleconsultation {
  background-image: url("images/teleconsultation.svg");
  width: 50px;
}
.list-entries {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.list-entries a {
  color: #212121;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 150px;
  font-size: 20px;
  border-radius: 3px;
}
.list-entries .domicile {
  background-color: #c7eef3;
  color: #243881;
}
.list-entries .consultation {
  background-color: #243881;
  color: #fff;
}

.list-entries .teleconsultation {
  background-color: #ffdd31;
}
.list-entries .domicile:hover {
  background-color: #a0d0d6;
}
.list-entries .consultation:hover {
  background-color: #1e2e68;
}

.list-entries .teleconsultation:hover {
  background-color: #eccc2a;
}
