body {
  background: rgb(63, 94, 251);
  background: radial-gradient(
    circle,
    rgba(63, 94, 251, 1) 0%,
    rgba(252, 70, 107, 1) 100%
  );
  font-family: sans-serif;
  color: white;
}

main {
  width: 730px;
  margin: 100px auto 50px;
  display: flex;
  align-items: center;
}

.dashboard__left {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 10px 10px 10px;
  border-radius: 8px;
}

h1 {
  text-align: center;
}

button {
  height: 100px;
  width: 100px;
  font-size: 40px;
  color: white;
  font-weight: bold;
}

button:hover {
  cursor: pointer;
}

.dashboard__right {
  background-color: rgba(255, 255, 255, 0.2);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 250px;
  height: 400px;
  padding: 0 20px;
}

.statistics {
  border: 1px solid white;
  height: 105px;
  border-radius: 8px;
  padding: 8px 20px;
  box-sizing: border-box;
}

footer {
  text-align: center;
}

a {
  text-decoration: none;
  color: white;
}

.icon-copyright {
  font-size: 8px;
}

img {
  width: 80%;
}

@media screen and (max-width: 740px) {
  main {
    flex-direction: column;
    width: 420px;
  }

  .dashboard__left {
    width: 100%;
    margin-bottom: 10px;
  }

  .dashboard__right {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 485px) {
  main {
    width: 90vw;
  }

  button {
    height: 80px;
    width: 80px;
  }
}

@media screen and (max-width: 366px) {
  main {
    width: 90vw;
  }

  button {
    height: 70px;
    width: 70px;
  }
}
