body {
  padding-top: 3.5rem;
}

.myheader {
  color: white;
  background-color: #673AB7;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  border-radius: 0;
}

.myheader-small {
  color: white;
  background-color: #673AB7;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0;
}

.myheader-small h1 {
  font-size: 2.5rem;
}

.boxes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  height: 280px;
  width: 200px;
  margin: 20px;
}

.bubble {
  height: 200px;
  width: 200px;
  border-radius: 1000px;
  background-color: #673AB7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease;
}

.icon {
  height: 90px;
  width: 90px;
  color: white;
  font-size: 10px;
  display: block;
  margin: 0 auto;
}

.icon-text {
  display: block;
  text-align: center;
  font-size: 25px;
  margin-top: 10px;
  color: #673AB7;
  transition: color 0.5s ease;
}

.logo {
  margin: 40px 20px;
}

a .box:hover .bubble {
  background-color: #311B92;
}

a .box:hover .icon-text {
  color: #311B92;
}

.bottom-buttons {
  margin-top: 30px;
}