@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.text-align-center {
  text-align: center;
}

.max-width {
  max-width: 800px;
}

.align-right {
  align-items: flex-end;
}

.align-left {
  align-items: flex-start;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

body,
html {
  min-height: 100%;
  margin: 0;
  font-family: Roboto, sans-serif;
  color: #000;
  font-size: 18px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  line-height: 1.5em;
}

nav {
  display: flex;
  padding: 10px;
  margin-top: 5vh;
}
nav .column {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 600px) {
  nav .column {
    width: 80%;
    margin: auto;
    align-items: center;
  }
}
nav #logo {
  max-width: 100%;
}
nav .flex-column {
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 600px) {
  nav .flex-column {
    width: 80%;
    margin: auto;
    text-align: center;
  }
}
nav .flex-column div {
  font-size: 0;
  display: flex;
  justify-content: space-between;
}
nav .flex-column p {
  margin-top: 0;
  opacity: 0.6;
  font-weight: 200;
}
nav .flex-column img {
  width: calc(50% - 2px);
}
@media only screen and (max-width: 600px) {
  nav {
    flex-direction: column;
  }
}

img {
  max-width: 100%;
}

main {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h3 {
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
  margin-top: 1em;
}

button {
  background-color: #F6C8B0;
  padding: 20px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
}

.invited {
  align-self: flex-start;
  margin-bottom: 20px;
  display: none;
}
@media only screen and (max-width: 600px) {
  .invited {
    flex-direction: column;
    align-self: center;
    align-items: center;
  }
}
@media only screen and (max-width: 600px) {
  .invited i {
    text-align: center;
  }
}
.invited.visible {
  display: flex;
}
.invited button {
  margin-left: 20px;
}
@media only screen and (max-width: 600px) {
  .invited button {
    margin-left: 0;
  }
}

.screens {
  margin-top: 7vh;
}

a {
  color: #000;
  text-decoration: underline;
}

footer {
  margin-top: 2vh;
  margin-bottom: 20px;
}
footer b {
  opacity: 0.5;
  font-weight: 200;
  font-size: 0.7em;
  padding-left: 10px;
  padding-right: 10px;
}
footer a {
  opacity: 0.5;
  font-weight: 200;
  font-size: 0.7em;
}

ul {
  list-style: numbers;
}

/*# sourceMappingURL=style.css.map */
