@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
:root {
  --primary: #1157c0;
}
* {
  font-family: "Titillium Web";
  box-sizing: border-box;
}
.home {
  font-size: 1.2rem;
  line-height: 1.6;
  padding-top: 3rem;
  width: 100%;
  background: #eeeeee;
  display: flex;
  align-items: center;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.option-card {
  display: inline-block;
  background: var(--primary);
  padding: 20px;
  margin: 15px;
  height: 150px;
  width: 350px;
  color: white;
  cursor: pointer;
  filter: drop-shadow(0 1px 2px grey);
  transition: all 0.15s ease;
}
.option-card:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 3px 5px grey);
}
.logout-btn {
  background: var(--primary);
}
.sub {
  font-size: 1.3rem;
}
.title {
  font-size: 1.9rem;
}

.pointer {
  cursor: pointer;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  max-width: 800px;
  height: 80vh;
  max-height: 600px;
  margin: auto;
  background: white;
  padding: 15px;
  filter: drop-shadow(0px 0px 5px grey);
}
.btn-primary {
  background: var(--primary);
}
