@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
a {
  text-decoration: none;
}
.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
.mynav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background-color: #1976D2;
  padding: 0 30px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.24);
}
.mynav__theme {
  outline: none;
  border: none;
  padding: 8px 20px;
  background: #FFE082;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.3s all;
}
.mynav__theme:active {
  box-shadow: inset 0 0 20px -3px rgba(0, 0, 0, 0.6);
}
.mynav__menu {
  display: flex;
  list-style: none;
  transition: 0.3s all;
  margin: 0;
  padding: 0;
}
.mynav__item {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  transition: 0.3s all;
}
.mynav__item:hover {
  background-color: #378fe7;
}
.mynav__link {
  font-size: 15px;
  color: #fff;
  transition: 0.3s all;
}
.mynav__link:hover {
  font-size: 17px;
}
.main {
  padding: 40px 0;
}
.main__content {
  display: flex;
  justify-content: space-around;
  width: 1000px;
  margin: 0 auto;
}
.main__tile {
  padding: 20px;
  width: 18%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s all;
}
.main__tile--danger .main__header,
.main__tile--danger .main__plus {
  color: #E64759;
}
.main__tile--success .main__header,
.main__tile--success .main__plus {
  color: #9F86FF;
}
.main__tile--warning .main__header,
.main__tile--warning .main__plus {
  color: #E4D836;
}
.main__tile--primary .main__header,
.main__tile--primary .main__plus {
  color: #1BC98E;
}
.main__header {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.main__features {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0 0 0 20px;
}
.main__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 16px;
}
.main__footer {
  text-align: center;
  opacity: 0.7;
  transition: 0.3s all;
}
.main__footer:hover {
  opacity: 1;
  -webkit-animation: spin 4s linear infinite;
  animation-iteration-count: 1;
}
.main__button {
  outline: 0;
  padding: 8px 20px;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  background: transparent;
  transition: 0.3s all;
}
.main__button--danger {
  border-color: #E64759;
}
.main__button--danger {
  border-color: #E64759;
}
.main__button--danger:hover {
  background: #ff2e46;
  color: #008235;
}
.main__button--success {
  border-color: #9F86FF;
}
.main__button--success {
  border-color: #9F86FF;
}
.main__button--success:hover {
  background: #3a06ff;
  color: #818874;
}
.main__button--primary {
  border-color: #1BC98E;
}
.main__button--warning {
  border-color: #E4D836;
}
.main__button--warning {
  border-color: #E4D836;
}
.main__button--warning:hover {
  background: #ffef1b;
  color: #008235;
}
