body {
  background-color: #eaf3ff;
  font-family: "Open Sans", sans-serif;
  font-size: large;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#logo {
  width: 150px;
  margin-top: 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.6s;
  background-color: #bdd6ff;
}
#logo:hover {
  transform: scale(1.05);
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
ul {
  text-align: start;
}
#company-list li::marker {
  color: rgb(14, 180, 14);
  font-size: 30px;
}
#staff-list li::marker {
  color: blue;
  font-size: 30px;
}
#driver-list li::marker {
  color: purple;
  font-size: 30px;
}
section {
  margin: 10px auto;
}
#intro {
  margin: 30px 50px 30px 50px;
}
#all-roles {
  max-width: 90vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 20px;
}
.account-role {
  border-radius: 20px;
  width: 350px;
  min-height: 450px;
  max-height: 500px;
  background-color: white;
  margin: 15px;
  padding: 15px;
  font-size: large;
  border: 2px solid black;
  transition: all 0.9s ease;
}
.account-role:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: box-shadow, transform 0.7s;
}
#companyRole {
  border-top: 5px solid rgb(14, 180, 14);
}

#staffRole {
  border-top: 5px solid blue;
}

#driverRole {
  border-top: 5px solid purple;
}
a {
  text-decoration: none;
  color: black;
}
@media (max-width: 800px) {
  .account-role {
    width: 80vw;
    height: 300px;
    background-color: white;
    margin: 35px auto;
  }
  #all-roles {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px;
  }
  button {
    width: 80%;
    height: 50px;
    margin: 3px 30px;
    background-color: #4285f4;
    color: white;
    font-size: 16px;
    font-weight: bolder;
  }
}
button {
  width: 80%;
  height: 50px;
  margin: 2px 30px 10px 30px;
  background-color: #4285f4;
  color: white;
  font-size: 16px;
  font-weight: bolder;
}
button:hover {
  background-color: #6ca4ff;
}
