@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

body {
  background-color: #241C19;
}

/*- - - - - Header - - - - -*/
.topbar{
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4vh 2vw 2vh 2vw;
  background-color: #241C19;
  position:fixed;
  top:0;
  right:0;
  z-index: +1;
}
.title{
  display: flex;
  align-items: center;
}

.unit{
  border-radius: 100%;
  max-width: 136px;
  min-width: 100px;
  flex: 1 1 16rem;
}

.headshots{
  min-width: 100px;
  display: flex;
  justify-content: space-around;
}

.close{
  min-width: 100px;
  border-radius: 100%;
  padding: 1rem;
  border: solid 5px transparent;
  transition: filter 250ms;
  filter: saturate(0%);
}

.close:hover {
  filter: saturate(100%);
}

.zero:hover{
  border: ridge 5px #EFFFAE;
  box-shadow: 0 0 10px 5px #EFFFAE;
}

.one:hover{
  border: ridge 5px #ACD5FF;
  box-shadow: 0 0 10px 5px #ACD5FF;
}

.two:hover{
  border: ridge 5px #FFF0A6;
  box-shadow: 0 0 10px 5px #FFF0A6;
}

.three:hover{
  border: ridge 5px #D1D1D1;
  box-shadow: 0 0 10px 5px #D1D1D1;
}

.break {
  flex-basis: 100%;
  height: 0;
}
.topgradient{
  width: 100%;
  height: 5rem;
  /*background-image: linear-gradient(to bottom, #241C19, rgba(0,0,0,0));*/
}
/* - - - - - P, H1, H2, H3 - - - - - */
h1{
  font-family: "Uncial Antiqua", system-ui;
  font-size: clamp(2rem, 0.875rem + 4vw, 4.75rem);
  font-weight: 400;
  font-style: normal;
  paint-order: stroke fill;
  -webkit-text-stroke: 5px black;
  color: #FF7676;
  text-transform: uppercase;
}

h3{
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: underline;
  color: #58CAF6;
}

p {
  font-family: "Amarante", serif;
  font-weight: 400;
  font-style: normal;
  color: #62B0FF;
}
/* - - - - - MAIN - - - - - */
.splash{
  height:100vh;
  height:100svh;
  padding: 200px;
  background-image: url("p1/images/splash.png");
  background-size: cover;
  background-position: center center;
}

.warning{
  text-align: center;
}

.text {
  background-color: #241C19;
  padding: 2rem;
  column-count: 2;
  column-width: 100px;
  column-gap: 2rem;
}

.units{
  padding: min(50px, 5%) 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.card{
  flex: 1 1 16rem;
  max-width: 300px;
  height: auto;
  transition: filter 250ms;
  filter: saturate(0%);
  /*z-index: -1;*/
}

.card:hover {
  filter: saturate(100%);
}

/* - - - - - FOOTER - - - - - */
.bottombar{
  height: 8vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 10%, #241C19 90%);
  position:fixed;
  bottom:0;
  right:0;
}

.host{
  height: 5vh;
  padding: 0 4rem;
}

.credits {
  /*background-color: #241C19;*/
  margin-left: auto;
  max-width: 25%;
  min-width: 50ch;
  padding: 0 2rem;
}

/* - - - - - Links - - - - - */
a, a:link, a:visited {
  color: #FF7676;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: 400ms all;
}

a:hover, a:active {
  color: white;
  font-weight: 600;
}