/* These styles affect all pages on the site. */
    /* palette:
        peach - #FFCBA4
        red - #A11B32
        melon - #FFA7A5
        blue - #383B53
        rich black - #010B13
    */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  height: 100%;
}
body {
  background-color: #010B13;
  color: #fff;
  font-family: Courier, monospace; 
  font-size: 14px; 
  line-height: 1;
  margin: 0; 
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}
main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


/* Headings */
h1, h2, h3, h4, h5, h6, label {
  color: #ffcba4;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
h1 {
  font-size: 5rem;
  color: #FF294D;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
label {
  color: #5b6873;
  display: block;
  font-size: 1.25rem;
  font-style: italic;
}

/* Paragraph Styles */
p, li { 
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 1em;
    margin-top: 0;
}
ul {
    list-style-type: disc;
    padding-inline-start: 2em;
    text-align: left;
}
li {
    display: list-item;
    list-style-position: outside;
    margin-bottom: 1em;
}

/* links */
a, button { 
    color: #FF294D; 
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.25s ease-in-out; 
}
a:hover, 
a:active, 
a:focus,
button:hover,
button:active,
button:focus,
input.btn:hover,
input.btn:active,
input.btn:focus { 
    background-color: #ffefe1; 
    color: #FF294D; 
}
a:focus { 
    text-decoration: underline; 
}
    /* links with additional info for accessibility */
a.info, button.info {
    position: relative;   
}
a.info span.linkInfo, button.info span.linkInfo, label.linkInfo {
    background-color: #FFA7A5;
    color: #010B13;
    font-size: 80%;
    font-style: italic;
    font-weight: normal;
    /*left: 20%;*/
    right: 0;
    min-width: 20em;
    opacity: 0;
    padding: 0.25rem;
    position: absolute;
    text-align: center;
    text-transform: none;
    top: 90%;    
    transition: all 0.25s ease-in-out;
    visibility: hidden;
    width: 0;
    z-index: 2;
}
a.info:hover span.linkInfo,
a.info:active span.linkInfo,
a.info:focus span.linkInfo {
    visibility: visible;
    opacity: 1;
}
a:disabled, a[disabled], button:disabled, button[disabled] {
    cursor: not-allowed;
    color: #777;
    font-style: italic;
    background-color: #eee;
}
button, input {
  appearance: none;
  display: inline-block;
  font-family: inherit;
  text-align: center;
  padding: 0;
}

/* Font effects */
strong { 
    font-weight: 600; 
}
em { 
    font-style: italic; 
}
small { 
    font-size: 85%; 
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.hidden { display: none!important; }
cite {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.5;
    font-style: italic;
    margin-bottom: 2em;
}


/* Images and figures */
img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  max-height: 60vh;
  width: auto;
}


/* sections */
#p1 strong:first-of-type {
    text-transform: uppercase;
}
#p1::first-letter {
    initial-letter: 2;
}
footer {
  padding: 0 1em 1em;
  text-align: center;
}
footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}

hr {
  margin: 1em auto 2em;
  width: 5em;
  border: 0;
  border-top: 5px solid #FF294D;
}


/* buttons */
.btn {
    background-color: #FF294D;
    border: 2px solid #FF294D;
    /* border-radius: 5em; */
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.75em 1em; 
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn:focus {
    background-color: #ffefff;
}
.btn:active,
.btn.active {
    background-color: #FF294D;
    color: #fff;
}



/* sections and forms */
section { padding: 1em; }
textarea {
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  display: block;
  min-width: 200px;
  max-width: 700px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  padding: 0.75rem;
}
#dismissal { padding-bottom: 0; }
#dismissal > p:last-child, #countdownContainer p { margin-bottom: 0; }
#countdownContainer h3 { margin-top: 0; }
#countdownContainer {
  position: sticky;
  bottom: 0;
  background-color: rgb(1 11 19 / 80%);
  width: 100%;
  padding: 1em;
}

/* rows and columns */
.row {
    width: 100%;
    clear: both;
}
    /* clearfix */
.row:after { 
    visibility: hidden; display: block; font-size: 0; 
    content: " "; clear: both; height: 0; 
}
[class^="col-"] {
    float: left;
    padding-left: 1em;
    padding-right: 1em;
    display: inline-block;
}


/* media queries */
@media (min-width: 768px) {
    .col-8 { width: 66.666666%; }
    .col-4 { width: 33.333333%; }
    .col-6 { width: 50%; }
    /* .row { margin-left: -1em; margin-right: -1em; } */
}
@media (max-width: 768px) {
    a.info span.linkInfo, button.info span.linkInfo, label.linkInfo { min-width: 12em; }
}