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

body {
  background-color: #82d6ff;
  height: 100vh;
  width: 100vw;
  padding: 0 120px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

header {
  display: flex;
  height: 120px;
  align-items: center;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%;
  height: calc(100% - 120px);
  align-items: center;
  justify-content: center;
}

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

#section-left {
  flex-direction: column;
}

#icon {
  height: 50px;
  width: 50px;
}

#app {
  width: 40%;
}

.download_link {
  margin: 20px;
  height: 40px;
}

.flex-last {
  margin-left: auto;
}
