body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
  /* height: 100%; */
  height: 100vh;
}

header,
footer {
  flex-shrink: 0;
}
main {
  flex-grow: 1;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222;
  background-color: white;
  width: 100%;
  padding-bottom: 2v;
  /* border-bottom: 4px solid white; */
}

header h1 {
  display: flex;
  justify-content: center;
  font-size: 5vw;
  margin: 3vw 0 1vw 0;
}

header h1 img {
  height: 6vw;
  margin: 0;
}

a {
  text-decoration: none;
  color: blue;
}
a:visited {
  color: blue;
}

/* Header */
header #dot {
  font-size: 0.3em;
  color: #999;
}

header #domain {
  font-size: 0.3em;
  color: #999;
}

section#tldr-section {
  display: flex;
  justify-content: center;
  padding: 2.5vw 0;
  width: 60%;
  /* border: 1px solid #999; */
}

section#tldr-section p {
  text-align: center;
  width: calc(100% - 3vw);
  /* border: 1px solid red; */
}

/* Main */
main {
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 90vw;
  gap: 2vw;
  padding: 1vw;
  /* border: 1px solid white; */
}

main section {
  margin-top: 4vw;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3vw 0;
  /* border: 3px solid pink; */
}

/* img#screenshot {
  border: 2px solid white;
} */

main section h2 {
  text-align: center;
  margin: 0;
  text-transform: capitalize;
  margin-bottom: 2vw;
}

/* Signup/Login Section */

main section {
  width: 500px;
  border-radius: 5px;
}

/* main section#about-section p {
  font-size: 14px;
  width: 80%;
}

main section#about-section h3 {
  text-align: left;
  width: 80%;
  margin-bottom: 0;
} */

#form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  list-style-type: none;
  width: 300px;
  /* border: 1px dotted blue; */
  margin: 0;
  padding: 0;
}
#form-wrapper.hidden {
  display: none;
}

#form-wrapper li {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#form-wrapper li.hidden {
  display: none;
}

#form-wrapper li label {
  display: flex;
  font-size: 14px;
  width: 80px;
  justify-content: right;
  align-items: center;
  height: 30px;
  width: 80px;
}

#form-wrapper li input {
  font-size: 14px;
  height: 30px;
  width: 220px;
  border: 0;
  border-bottom: 1px solid #222;
}

#form-wrapper li button {
  font-size: 14px;
  height: 30px;
  width: 100%;
  background-color: lightgreen;
  border: 0;
  border-radius: 5px;
}
#form-wrapper li button:hover {
  background-color: greenyellow;
}
/* .signup-only {
  background-color: lightpink;
} */

/* .login-only {
  background-color: aquamarine;
} */

#signup-link-wrapper,
#login-link-wrapper {
  font-size: 12px;
  display: flex;
  justify-content: center;
}

#signup-link,
#login-link {
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  color: blue;
}

#signup-success {
  width: 80%;
  display: flex;
  flex-direction: column;
}
#signup-success.hidden {
  display: none;
}

/* Error message */
#error-message {
  font-size: 12px;
  width: 300px;
  text-align: center;
  color: red;
}

#error-message.fade {
  opacity: 1;
  animation: fadeOut 1s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
#error-message.hidden {
  visibility: hidden;
  display: block;
}

/* Logged in main */

main#logged-in-main {
  color: white;
  /* border: 1px solid salmon; */
  display: flex;
  justify-content: center;
  align-items: center;
}
main#logged-in-main.hidden {
  display: none;
}

/* Chrome web store logo */
#chromewebstore-logo-wrapper {
  padding: 10px;
  background-color: white;
  border-radius: 8px;
}

/* Footer, etc. */
footer {
  color: white;
  font-size: 0.5em;
  height: 48px;
  background-color: #222;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}

footer p a {
  color: pink;
}

.hidden {
  display: none;
}

/* ------------------- BETA STUFF ----------------------  */

.beta-label {
  background-color: hotpink;
  color: white;
}

header .beta-label {
  position: absolute;
  top: 0;
  left: 2vw;
  font-size: 2vw;
  padding: 10px;
  border-radius: 10px;
}

main section .beta-label {
  padding: 5px;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 18px;
}

#beta-message {
  font-size: 12px;
}

hr {
  width: 60%;
  margin: 20px auto;
}

#form-wrapper li#signup-message-wrapper {
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: 0;
}
#form-wrapper li#signup-message-wrapper.hidden {
  display: none;
}

#signup-message-wrapper p {
  text-align: center;
  font-size: 13px;
  display: flex;
  width: 100%;
}

#signup-message-wrapper textarea {
  font-size: 13px;
  display: flex;
  width: 100%;
  border: 1px solid black;
  /* margin-bottom: 0; */
  height: 5em;
  resize: none;
}

#signup-message-wrapper textarea:focus {
  /* margin-top: 0; */
  font-size: 13px;
  display: flex;
  width: 100%;
  outline: none;
}

/* PRIVACY POLICY */

#privacy-policy-wrapper {
  background-color: white;
  width: 90%;
  padding-bottom: 80px;
}

#privacy-policy-wrapper hr {
  width: 50%;
  border: 0;
  height: 1px;
  border-bottom: 1px dashed #ccc;
}

#privacy-policy-wrapper h1 {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 50px;
}

#privacy-policy-wrapper p {
  font-size: 10px;
  margin-left: 10%;
  width: 80%;
}

/* SUPPORT */

p#support {
  background-color: white;
  display: flex;
  padding: 30px;
  border-radius: 10px;
}

/* Email Verification */

#status-text-verify {
  text-align: center;
  color: #222;
}
#status-text-verify.error {
  color: red;
}

span#mailbox {
  display: inline-block;
  margin-top: 22px;
  font-size: 80px;
}

span#skullcrossbones {
  display: inline-block;
  font-size: 80px;
}

span#verify-fail-email {
  font-size: 10px;
}

/* Pricing */

#pricing-page-content {
  color: white;
}

#pricing-page-content a,
#pricing-page-content a:visited {
  color: pink;
}

#pricing-sample-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: white;
  color: #222;
  font-size: small;
  width: 70%;
  padding: 2vw;
}

table {
  background-color: white;
  font-size: 12px;
}

thead {
  display: block;
  border-bottom: 1px solid #222;
}

tr {
  /* border: 5px solid red; */
  display: flex;
  gap: 10px;
  /* background-color: blue; */
  justify-content: space-between;
}

td {
  width: 100px;
  background-color: white;
  padding: 0 10px;
  border-right: 1px solid #222;
}

td:last-child {
  border: 0;
}

thead tr td {
  text-align: center;
}

tbody tr td {
  text-align: right;
  display: block;
}

#pricing-disclaimer {
  font-size: 10px;
}

/* Pricing - audio samples */
section#audio-section {
  border-radius: 20px;
}

section#audio-section h2 {
  color: #222;
}

section#audio-section div {
  color: #222;
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

section#audio-section div p {
  width: 80px;
  text-align: right;
  font-size: 12px;
}
