body {
  background-color: #f5f4f1;
  font-family: "Dosis", sans-serif;
}

textarea,
input {
  background-color: #f9f8f6;
}

nav {
  background-color: #f5f4f1;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

a {
  color: #ed2131;
}

footer {
  padding: 10px;
}

.btn-pink {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #f1515d;
  *background-color: #f1515d;
  background-image: -moz-linear-gradient(top, #f08289, #f1515d);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#f08289),
    to(#f1515d)
  );
  background-image: -webkit-linear-gradient(top, #f08289, #f1515d);
  background-image: -o-linear-gradient(top, #f08289, #f1515d);
  background-image: linear-gradient(to bottom, #f08289, #f1515d);
  background-repeat: repeat-x;
  border-color: #f1515d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F08289', endColorstr='#F1515D', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-pink:hover,
.btn-pink:active,
.btn-pink.active,
.btn-pink.disabled,
.btn-pink[disabled] {
  color: #ffffff;
  background-color: #f1515d;
}

.home {
  min-height: 100vh;
}
.home .logo {
  transition: all 0.6s ease-in-out;
}
.home .logo-overlay {
  position: absolute;
  opacity: 0;
}
.home .logo-overlay:hover {
  opacity: 1;
}
.home .about {
  box-shadow: 2px 2px 6px #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 22px;
  text-align: center;
}
.home .main-text {
  margin-bottom: 30px;
  margin-top: 30px;
}
.home .cta {
  font-size: 20px;
}
.home img.scroll {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.tour {
  margin-top: 30px;
  font-size: 18px;
}
.tour h1 {
  font-weight: 600;
  color: #333333;
}
.tour img {
  width: 100%;
}

.profile {
  margin-bottom: 30px;
}
.profile .me {
  width: 200px;
}
.profile .name {
  font-size: 62px;
  padding: 3px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #ccc;
}
.profile .card,
.profile .quote {
  text-align: center;
}
.profile .quote {
  font-size: 28px;
  font-style: italic;
  color: #4a4a4b;
}

.memories li {
  list-style: none;
}

.memories h6 {
  font-weight: 900;
}

.dashboard .tags li {
  cursor: pointer;
}

.dashboard .solutions {
  padding: 10px;
}
.dashboard .solutions .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .solutions .card-header .date {
  font-size: 12px;
  font-style: italic;
}
.dashboard .solutions .solution {
  margin-bottom: 10px;
}
.dashboard .solutions ul {
  padding: 0;
}
.dashboard .solutions li {
  list-style: none;
}

.dashboard .minitask {
  padding: 3px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #ccc;
}
.dashboard .minitask .header {
  font-size: 44px;
}
.dashboard .minitask .date {
  font-size: 12px;
  font-style: italic;
}

.dashboard .already-solved {
  text-align: center;
}
.dashboard .already-solved .done {
  height: 100px;
}

.about img {
  width: 100%;
}

.about img.us {
  display: block;
  margin: auto;
}

.how .header {
  margin-bottom: 50px;
}

.how img.question {
  display: block;
  margin: auto;
  width: 15%;
}
