@charset "utf-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*END MEYER REST*/

body {
  margin: 0;
  background: white;
  color:black;
  font-family: "Space Grotesk", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  overflow-x: hidden;
  height: 100vh;
font-size: 1rem;
}
#nav-container {
  position:absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
  width: 90vw;
  background: white opacity(0.9);
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; /* ensure it stays on top */
}
#nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
#nav-left,
#nav-right {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#nav-container a {
  margin: 0;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1rem;
}
.ticker-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: 5rem; 
  width: 110vw;
}


.ticker-row {
  flex: 1; 
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 0  10px;
  font-size: 2.5vh;
}


.center-row {
  flex: 2; 
  justify-content: center;
  font-weight: 500;
}


.ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}


@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


@keyframes scrollTextReverse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
#main {
  width: 90vw;
  max-width: inherit;
  margin: 0 auto 10px auto;
  padding: 0.5rem;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
}

#instructions {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}

#topbox {
  display: grid;
  grid-template-columns: 1fr;

  border-top: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;

  padding-bottom: 0.5rem;
}

#topbox-text {
  padding: 0.5rem;
}

#middleboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#middleboxes > div {
  padding: 0.5rem;

  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
}

#middleboxes > div:last-child {
  border-right: 1px solid black;
}

#agreement {
  display: grid;
}

#agreement > div {
  padding: 0.5rem;
  border: 1px solid black;
}

#box4{
  border: 1px solid black;
}
#agreement{
    width: 100%;
    height: max-content;
    max-width: 100%;
    padding-top: .5rem;
    padding-bottom: .5rem;
    flex-direction: column;
    display: flex;
    border-top: none;
}
#agreement div{
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: .25rem;
  padding-bottom: .5rem;
}
#response{
	width: 100%;
	height: max-content;
	display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
  padding-top: 2rem;
}
#response-textbox{
  border-top: 1px solid rgba(0, 0, 0, 0) ;
}
#checker{
  padding-top: 1rem;

}
input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Space Grotesk",'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif';
}
input[type="submit"] {
  color: rgb(0, 0, 0);
  padding: 0.5rem 2%;
  border: 1px solid black;
  margin-top: 1rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Space Grotesk",'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif';
	font-size: .75rem;
	font-weight: 400;
	color: black;
  line-height: 1.4;

}
textarea {
  width: 100%;
  min-height: 8rem;
  overflow: hidden;
  resize: none;
}

#footer{
  display: flex;
  height: auto;
  width: 100%;
  margin-left: 5%;
  margin-bottom: 5%;
  align-items: center;
  background: white opacity(0.9); 
  font-family: "Space Grotesk", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: .5rem;
  font-weight: 300;
  color: rgb(125, 125, 125);
  text-align: center;
  padding: 1rem;
}
p{
	font-family: "Space Grotesk",'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif';
	font-size: 1rem;
	font-weight: 300;
	color: black;
  line-height: 1.4;
}
sub{
  font-family: "Space Grotesk", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: 2rem;
  font-weight: 300;
  color: black;
}
sub2{
  font-family: "Space Grotesk", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: 1.5rem;
  font-weight: 400;
  color: black;
  line-height: 1.4;
}
h1{
font-family: "Space Grotesk", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
font-size: 4rem;
font-weight: 400;
color: black;}	
h2{
font-family: "Space Grotesk", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
font-size: 2rem;
font-weight: 350;
color: black;}	

space grotesk{
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.75rem;
  font-weight: 400;
	font-style: normal;}
  
