@font-face {
  font-family: Regular;
  src: url("../../fonts/Regular.ttf");
}
@font-face {
  font-family: SemiBold;
  src: url("../../fonts/SemiBold.ttf");
}
* {
  box-sizing: border-box;
  font-family: Regular, sans-serif;
  color: rgb(255, 255, 255);
}

html {
  background: rgb(25, 28, 30);
  display: flex;
  justify-content: center;
}

body {
  margin: 0;
  padding: 0 2rem;
  width: 100vw;
  height: 100vh;
  max-width: 90rem;
  display: none;
}
body[data-loaded=true] {
  display: block;
}
body[data-platform=win] div[data-download-buttons] {
  grid-template-columns: 1fr;
}

header {
  padding: 2rem 0;
  width: 100%;
  display: flex;
  align-items: center;
}
header h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: normal;
  font-family: SemiBold;
}

main {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 2.5rem 0;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}
main section {
  box-shadow: 0 0 0.2rem rgba(255, 255, 255, 0.2);
  padding: 1.2rem 1.2rem 0;
  border-radius: 1rem;
  max-width: 30rem;
}
main section[data-app=presenter] div[data-app-stage] {
  border-color: rgb(255, 125, 0);
  color: rgb(255, 125, 0);
  background: rgba(255, 125, 0, 0.1);
}
main section[data-app=presenter] a[data-download] {
  background: rgb(210, 105, 0);
}
main section[data-app=presenter] a[data-download]:hover {
  background: rgb(170, 85, 0);
}
main section[data-app=presenter] button[data-other-platforms] {
  color: rgb(255, 125, 0);
}
main section[data-app=presenter] button[data-other-platforms]:hover {
  color: rgb(210, 105, 0);
}
main section[data-app=sheets] ul:last-child {
  padding-bottom: 1.2rem;
}
main section[data-app=sheets] svg {
  margin-right: 1.1rem;
}
main section[data-app=sheets] div[data-app-stage] {
  border-color: rgb(100, 190, 135);
  color: rgb(100, 190, 135);
  background: rgba(100, 190, 135, 0.1);
}
main section[data-app=sheets] a[data-download] {
  background: rgb(65, 145, 95);
}
main section[data-app=sheets] a[data-download]:hover {
  background: rgb(50, 115, 75);
}
main section[data-app=sheets] button[data-other-platforms] {
  color: rgb(100, 190, 135);
}
main section[data-app=sheets] button[data-other-platforms]:hover {
  color: rgb(65, 145, 95);
}
main section h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: SemiBold;
  display: flex;
  align-items: center;
}
main section h2 svg {
  height: 2.5rem;
  width: 2.5rem;
  margin-right: 0.9rem;
}
main section h2 div[data-app-stage] {
  border-width: 0.1rem;
  border-style: solid;
  border-radius: 0.5rem;
  margin: 0 0 0.1rem auto;
  padding: 0.7rem 0.75rem 0.7rem 0.85rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0.6;
}
main section p {
  font-size: 0.95rem;
  padding: 1rem 0;
}
main section h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: normal;
  font-family: SemiBold;
}
main section ul {
  font-size: 0.95rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  margin: 0;
}
main section div[data-download-buttons] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.2rem;
}
main section div[data-download-buttons]:last-child {
  margin-bottom: 1.2rem;
}
main section div[data-download-buttons] a[data-download] {
  width: 100%;
  color: white;
  border: none;
  padding: 1.1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}
main section div[data-download-buttons] a[data-download]:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
main section div[data-download-buttons] a[data-download]:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
main section button[data-other-platforms] {
  width: 100%;
  background: transparent;
  border: none;
  margin-top: 0.2rem;
  padding: 1rem 0 1.2rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
main section ul + button[data-other-platforms] {
  margin-top: -1rem;
}