/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

h1 {
  font-size: 4rem;
  font-weight: 305;
  margin-bottom: 2rem;
}

.app-list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.app-item {
  text-align: center;
}

.icon {
  background-color: #f66a66;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem auto;
}

.icon i {
  font-size: 1rem;
  color: #ffffff;
}

.app-label {
  font-size: 1rem;
  font-weight: 350;
  color: #333333;
}
