/* 
      _         _
     | |       | |
  ___| |_ _   _| | ___   ___ ___ ___
 / __| __| | | | |/ _ \ / __/ __/ __|
 \__ \ |_| |_| | |  __/| (__\__ \__ \
 |___/\__|\__, |_|\___(_)___|___/___/
           __/ |
          |___/

*/

/* -----------Fonts----------- */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');
/* --------------------------- */

:root {
  --bgcolor1: #282828;
  --bgcolor2: #202020;
  --border1: #254ed6;
}

* {
  color: white;
  font-family: "Segoe UI", Arial, sans-serif;
}

.dark1 {
  background-color: var(--bgcolor1);
}

.imageText {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* ------Main Containers------ */
#parent {
  align-items: center;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px;
  max-height: 80%;
}

.child {
  flex-shrink: 1;
  background-color: var(--bgcolor2);
  border: 2px solid var(--border1);
  box-shadow: 0px 0px 5px 2px var(--border1);
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
  max-height: 85vh;
}
.child:hover {
  box-shadow: 0px 0px 5px 5px var(--border1);
  transform: scale(1.01, 1.01);
}

#leftChild {
  padding: 3%;
}

#textBlock {
  text-align: left;
  padding: 4%;
}
/* --------------------------- */

/* -------Element Types------- */
h1,h2,h3,h4,h5 {
  font-family: 'Comfortaa', cursive;
  text-shadow: 1px 1px 2px black, 0 0 20px blue, 0 0 5px darkblue;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--bgcolor2);
  color: white;
  text-align: center;
}

hr {
  width: 90%;
  box-shadow: 0px 0px 3px 2px var(--border1);
}

ul {
  text-align: center;
  list-style-position: inside;
}
/* --------------------------- */

/* ------Link Formatting------ */
a {
  color: white;
}
a:visited {
  color: #6d00d3;
}
a:hover {
  color: #2f56da;
}
a:active {
  color: #4a4aff;
}
/* --------------------------- */

/* debugging stuff for positions */
.border {
  border: 2px solid red;
}