body {
  font-family: 'Roboto', sans-serif;
  max-width: 1200px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}

#top-bar {
  display: flex;
  align-items: center;
}

#app-header {
  display: flex;
  text-decoration: none;
  color: black;
  align-items: center;
}

#app-icon {
  width: 56px;
  height: 56px;
}

#app-title {
  margin: 12px;
  font-size: 28px;
}

#app-description {
  padding-top: 40px;
  padding-bottom: 0px;
  width: 600px;
  font-size: 28px;
  font-weight: lighter;
  text-align: center;
  justify-self: center;
}

#repo-button {
  display: flex;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-right: 14px;
  border-radius: 48px;
  margin-left: auto;
  text-decoration: none;
  color: black;
  outline-style: solid;
  outline-width: 0.5px;
  outline-color: lightgrey;
}

#repo-button:hover {
  background-color: ghostwhite;
}

#repo-button > img {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}

#add-package-section {
  display: flex;
  justify-self: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#add-package-section > p {
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}

#add-package-button {
  display: inline-block;
  align-self: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 48px;
  border-color: black;
  border: none;
  outline-style: solid;
  outline-width: 0.5px;
  outline-color: lightgrey;
  background-color: ghostwhite;
  cursor: pointer;
}

#add-package-button:hover {
  background-color: rgb(234, 234, 255);
}

#try-playground-prompt {
  margin-top: 8px;
  margin-bottom: 48px;
  justify-self: center;
  font-size: 20px;
}

footer {
  padding-top: 24px;
  padding-bottom: 12px;
  text-align: center;
  font-weight: lighter;
} 

#issues-button {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 16px;
  text-decoration: none;
  color: black;
  outline-style: solid;
  outline-width: 0.5px;
  outline-color: lightgrey;
  background-color: ghostwhite;
}

#issues-button:hover {
  background-color: rgb(234, 234, 255);
}

#flutter-container.non-full-screen {
  position: relative;
  width: 100%;
  height: 800px;
  z-index: 1;
}

#flutter-container.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
